Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for kubeversion (0.23 sec)

  1. pkg/kube/version_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package kube
    
    import (
    	"fmt"
    	"testing"
    
    	kubeVersion "k8s.io/apimachinery/pkg/version"
    	fakediscovery "k8s.io/client-go/discovery/fake"
    )
    
    func TestIsAtLeastVersion(t *testing.T) {
    	tests := []struct {
    		name           string
    		clusterVersion uint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. pkg/kube/version.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package kube
    
    import (
    	"fmt"
    	"strconv"
    
    	"k8s.io/apimachinery/pkg/util/version"
    	kubeVersion "k8s.io/apimachinery/pkg/version"
    )
    
    // IsAtLeastVersion returns true if the client is at least the specified version.
    // For example, on Kubernetes v1.15.2, IsAtLeastVersion(13) == true, IsAtLeastVersion(17) == false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. manifests/charts/ambient/Chart.yaml

    apiVersion: v2
    name: ambient
    description: Helm umbrella chart for ambient
    type: application
    version: 1.0.0
    appVersion: 1.0.0
    kubeVersion: ">= 1.23.0-0"
    keywords:
      - istio-cni
      - istio
      - ambient
    sources:
      - https://github.com/istio/istio
    icon: https://istio.io/latest/favicons/android-192x192.png
    
    # These will be stamped out to real versions during release publish
    dependencies:
      - name: base
        version: 1.0.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 718 bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/templates/daemonset.yaml

    # This manifest installs the Istio install-cni container, as well
    # as the Istio CNI plugin and config on
    # each master and worker node in a Kubernetes cluster.
    {{- $defaultBinDir :=
        (.Capabilities.KubeVersion.GitVersion | contains "-gke") | ternary
          "/home/kubernetes/bin"
          "/opt/cni/bin"
    }}
    kind: DaemonSet
    apiVersion: apps/v1
    metadata:
      name: {{ template "name" . }}-node
      namespace: {{ .Release.Namespace }}
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingSnapshotFromPluginRepositorySpec.groovy

              }
            """
    
            and:
            useCustomRepository("""
                resolutionStrategy.eachPlugin {
                    if(requested.id.name == 'plugin') {
                        useVersion('1.0-SNAPSHOT')
                    }
                }
            """)
    
            when:
            succeeds("pluginTask")
    
            then:
            output.contains("I'm here")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

                configurations.conf.resolutionStrategy {
                    eachDependency { DependencyResolveDetails details ->
                        if (details.requested.group == 'org') {
                            details.useVersion '1.0'
                        }
                    }
                }
            """
    
            when:
            run 'checkDeps'
    
            then:
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top