Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for image (0.15 sec)

  1. manifests/charts/istio-operator/templates/deployment.yaml

        {{- end }}
        spec:
          serviceAccountName: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
          containers:
            - name: istio-operator
              image: {{.Values.hub}}/operator:{{.Values.tag}}
              command:
              - operator
              - server
              - --monitoring-host={{ .Values.operator.monitoring.host }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Aug 25 19:10:42 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  2. helm/minio/templates/deployment.yaml

          serviceAccountName: {{ .Values.serviceAccount.name }}
          {{- end }}
          containers:
            - name: {{ .Chart.Name }}
              image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
              imagePullPolicy: {{ .Values.image.pullPolicy }}
              command:
                - "/bin/sh"
                - "-ce"
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Mar 03 17:50:39 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-egress/templates/deployment.yaml

    {{- end }}
    {{- if .Values.global.proxy.enableCoreDump }}
          initContainers:
            - name: enable-core-dump
    {{- if contains "/" .Values.global.proxy.image }}
              image: "{{ .Values.global.proxy.image }}"
    {{- else }}
              image: "{{ .Values.global.hub }}/{{ .Values.global.proxy.image | default "proxyv2" }}:{{ .Values.global.tag }}{{with (.Values.global.proxy.variant | default .Values.global.variant)}}-{{.}}{{end}}"
    {{- end }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

    {{- end }}
    {{- if .Values.global.proxy.enableCoreDump }}
          initContainers:
            - name: enable-core-dump
    {{- if contains "/" .Values.global.proxy.image }}
              image: "{{ .Values.global.proxy.image }}"
    {{- else }}
              image: "{{ .Values.global.hub }}/{{ .Values.global.proxy.image | default "proxyv2" }}:{{ .Values.global.tag }}{{with (.Values.global.proxy.variant | default .Values.global.variant)}}-{{.}}{{end}}"
    {{- end }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (1)
  5. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

    {{- end }}
          containers:
            - name: discovery
    {{- if contains "/" .Values.pilot.image }}
              image: "{{ .Values.pilot.image }}"
    {{- else }}
              image: "{{ .Values.pilot.hub | default .Values.global.hub }}/{{ .Values.pilot.image | default "pilot" }}:{{ .Values.pilot.tag | default .Values.global.tag }}{{with (.Values.pilot.variant | default .Values.global.variant)}}-{{.}}{{end}}"
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 29 19:22:34 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  6. manifests/charts/gateway/templates/deployment.yaml

          containers:
            - name: istio-proxy
              # "auto" will be populated at runtime by the mutating webhook. See https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#customizing-injection
              image: auto
              {{- with .Values.imagePullPolicy }}
              imagePullPolicy: {{ . }}
              {{- end }}
              securityContext:
              {{- if .Values.containerSecurityContext }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 3.5K bytes
    - Viewed (0)
Back to top