Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for releases (0.23 sec)

  1. istioctl/pkg/install/k8sversion/version.go

    		"Proceeding with the installation, but you might experience problems. " +
    		"See https://istio.io/latest/docs/releases/supported-releases/ for a list of supported versions.\n"
    )
    
    // CheckKubernetesVersion checks if this Istio version is supported in the k8s version
    func CheckKubernetesVersion(versionInfo *version.Info) (bool, error) {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Jan 22 02:07:51 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/clusterrolebinding.yaml

    metadata:
      name: istiod-clusterrole{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}-{{ .Release.Namespace }}
      labels:
        app: istiod
        release: {{ .Release.Name }}
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: istiod-clusterrole{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}-{{ .Release.Namespace }}
    subjects:
      - kind: ServiceAccount
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Oct 10 17:32:44 GMT 2021
    - 1.4K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/NOTES.txt

    "{{ .Release.Name }}" successfully installed!
    
    To learn more about the release, try:
      $ helm status {{ .Release.Name }} -n {{ .Release.Namespace }}
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 02:27:41 GMT 2024
    - 214 bytes
    - Viewed (0)
  4. istioctl/cmd/root.go

    	xdsBasedTroubleshooting := []*cobra.Command{
    		// TODO(hanxiaop): I think experimental version still has issues, so we keep the old version for now.
    		version.XdsVersionCommand(ctx),
    		// TODO(hanxiaop): this is kept for some releases in case someone is using it.
    		proxystatus.XdsStatusCommand(ctx),
    	}
    	troubleshootingCommands := []*cobra.Command{
    		version.NewVersionCommand(ctx),
    		proxystatus.StableXdsStatusCommand(ctx),
    	}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 11 20:51:30 GMT 2024
    - 10K bytes
    - Viewed (0)
  5. manifests/charts/ztunnel/templates/NOTES.txt

    ztunnel successfully installed!
    
    To learn more about the release, try:
      $ helm status {{ .Release.Name }}
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 15 18:05:57 GMT 2023
    - 144 bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/templates/serviceaccount.yaml

    imagePullSecrets:
    {{- range .Values.global.imagePullSecrets }}
      - name: {{ . }}
    {{- end }}
    {{- end }}
    metadata:
      name: istio-cni
      namespace: {{ .Release.Namespace }}
      labels:
        app: istio-cni
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Oct 20 17:41:00 GMT 2020
    - 500 bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

          {{- if .Values.pilot.enabled }}
          discoveryAddress: {{ printf "istiod-remote.%s.svc" .Release.Namespace }}:15012
          {{- else }}
          discoveryAddress: {{ printf "istiod.%s.svc" .Release.Namespace }}:15012
          {{- end }}
          {{- else }}
          discoveryAddress: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}.{{.Release.Namespace}}.svc:15012
          {{- end }}
    {{- end }}
    
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Mar 07 16:59:18 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name | default "istio-egressgateway" }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name | default "istio-ingressgateway" }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5K bytes
    - Viewed (0)
  10. bin/update_deps.sh

    export GO111MODULE=on
    go get -u "istio.io/api@${UPDATE_BRANCH}"
    go get -u "istio.io/client-go@${UPDATE_BRANCH}"
    go mod tidy
    
    sed -i "s/^BUILDER_SHA=.*\$/BUILDER_SHA=$(getSha release-builder)/" prow/release-commit.sh
    chmod +x prow/release-commit.sh
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Sep 12 14:07:30 GMT 2023
    - 2K bytes
    - Viewed (0)
Back to top