Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for kubeVersion (0.23 sec)

  1. helm/minio/templates/_helpers.tpl

    */}}
    {{- define "minio.networkPolicy.apiVersion" -}}
      {{- if semverCompare ">=1.4-0, <1.7-0" .Capabilities.KubeVersion.Version -}}
        {{- print "extensions/v1beta1" -}}
      {{- else if semverCompare ">=1.7-0, <1.16-0" .Capabilities.KubeVersion.Version -}}
        {{- print "networking.k8s.io/v1beta1" -}}
      {{- else if semverCompare "^1.16-0" .Capabilities.KubeVersion.Version -}}
        {{- print "networking.k8s.io/v1" -}}
      {{- end -}}
    {{- end -}}
    
    {{/*
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. operator/pkg/helm/helm.go

    	// overwrite helm default capabilities
    	operatorVersion, _ := chartutil.ParseKubeVersion("1." + strconv.Itoa(k8sversion.MinK8SVersion) + ".0")
    	caps.KubeVersion = *operatorVersion
    
    	if version != nil {
    		caps.KubeVersion = chartutil.KubeVersion{
    			Version: version.GitVersion,
    			Major:   version.Major,
    			Minor:   version.Minor,
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. helm/minio/templates/console-ingress.yaml

        {{- end }}
      {{- end }}
      rules:
        {{- range .Values.consoleIngress.hosts }}
        - http:
            paths:
              - path: {{ $ingressPath }}
                {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
                pathType: Prefix
                backend:
                  service:
                    name: {{ $fullName }}
                    port: 
                      number: {{ $servicePort }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 06:27:17 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. helm/minio/templates/ingress.yaml

        {{- end }}
      {{- end }}
      rules:
        {{- range .Values.ingress.hosts }}
        - http:
            paths:
              - path: {{ $ingressPath }}
                {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
                pathType: Prefix
                backend:
                  service:
                    name: {{ $fullName }}
                    port: 
                      number: {{ $servicePort }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 06:27:17 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. helm/minio/templates/deployment.yaml

            runAsUser: {{ .Values.securityContext.runAsUser }}
            runAsGroup: {{ .Values.securityContext.runAsGroup }}
            fsGroup: {{ .Values.securityContext.fsGroup }}
            {{- if and (ge .Capabilities.KubeVersion.Major "1") (ge .Capabilities.KubeVersion.Minor "20") }}
            fsGroupChangePolicy: {{ .Values.securityContext.fsGroupChangePolicy }}
            {{- end }}
          {{- end }}
          {{ if .Values.serviceAccount.create }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 17:50:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. 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)
  10. hack/get-build.sh

      echo "${KUBE_VERSION}"
    else
      echo "Using version at ${1}: ${KUBE_VERSION}" >&2
      if [[ ${KUBE_VERSION} =~ ${KUBE_RELEASE_VERSION_REGEX} ]]; then
        curl -L --fail -o "kubernetes-${KUBE_VERSION}.tar.gz" "${KUBE_RELEASE_BUCKET_URL}/release/${KUBE_VERSION}/${KUBE_TAR_NAME}"
      elif [[ ${KUBE_VERSION} =~ ${KUBE_CI_VERSION_REGEX} ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top