Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,085 for RELEASE (0.25 sec)

  1. manifests/charts/istio-cni/templates/clusterrolebinding.yaml

    subjects:
    - kind: ServiceAccount
      name: {{ template "name" . }}
      namespace: {{ .Release.Namespace }}
    ---
    {{- if .Values.cni.repair.enabled }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: {{ template "name" . }}-repair-rolebinding
      labels:
        k8s-app: {{ template "name" . }}-repair
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.prerelease-lifecycle.go

    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *Binding) APILifecycleIntroduced() (major, minor int) {
    	return 1, 0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/release/notes.md

    <!--
    ### Example promoted
    -->
    
    ## Fixed issues
    
    <!--
    This section will be populated automatically
    -->
    
    ## Known issues
    
    Known issues are problems that were discovered post-release that are directly related to changes made in this release.
    
    <!--
    This section will be populated automatically
    -->
    
    ## External contributions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. Dockerfile.hotfix

    FROM registry.access.redhat.com/ubi9/ubi-micro:latest
    
    ARG RELEASE
    
    LABEL name="MinIO" \
          vendor="MinIO Inc <******@****.***>" \
          maintainer="MinIO Inc <******@****.***>" \
          version="${RELEASE}" \
          release="${RELEASE}" \
          summary="MinIO is a High Performance Object Storage, API compatible with Amazon S3 cloud storage service." \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. helm/minio/templates/service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: {{ template "minio.fullname" . }}
      labels:
        app: {{ template "minio.name" . }}
        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
        monitoring: "true"
      {{- if .Values.service.annotations }}
      annotations: {{- toYaml .Values.service.annotations | nindent 4 }}
      {{- end }}
    spec:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:05:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *CSIDriver) APILifecycleIntroduced() (major, minor int) {
    	return 1, 18
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. manifests/charts/gateway/README.md

    The script below can handle this for you. Replace `RELEASE` and `NAMESPACE` with the name and namespace of the release:
    
    ```console
    KINDS=(service deployment)
    RELEASE=istio-ingressgateway
    NAMESPACE=istio-system
    for KIND in "${KINDS[@]}"; do
        kubectl --namespace $NAMESPACE --overwrite=true annotate $KIND $RELEASE meta.helm.sh/release-name=$RELEASE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/BaselineVersionResolver.groovy

            GradleDistribution best = null
            for (GradleDistribution release : releases.all) {
                if (release.version.version == requested) {
                    return release
                }
                if (!release.version.snapshot && release.version.baseVersion.version == requested && (best == null || best.version < release.version)) {
                    best = release
                }
            }
    
            best
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/versions/features.go

    const Future = ""
    
    // AtLeast reports whether the file version v comes after a Go release.
    //
    // Use this predicate to enable a behavior once a certain Go release
    // has happened (and stays enabled in the future).
    func AtLeast(v, release string) bool {
    	if v == Future {
    		return true // an unknown future version is always after y.
    	}
    	return Compare(Lang(v), Lang(release)) >= 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/os/exec.go

    	testlog.Open(name)
    	return startProcess(name, argv, attr)
    }
    
    // Release releases any resources associated with the [Process] p,
    // rendering it unusable in the future.
    // Release only needs to be called if [Process.Wait] is not.
    func (p *Process) Release() error {
    	// Note to future authors: the Release API is cursed.
    	//
    	// On Unix and Plan 9, Release sets p.Pid = -1. This is the only part of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top