Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 519 for ImagePullPolicy (0.2 sec)

  1. manifests/charts/gateways/istio-egress/templates/deployment.yaml

    {{- end }}
    {{- if .Values.global.imagePullPolicy }}
              imagePullPolicy: {{ .Values.global.imagePullPolicy }}
    {{- end }}
              command:
                - /bin/sh
              args:
                - -c
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. helm/minio/templates/post-job.yaml

              securityContext:
                runAsUser: {{ .Values.makePolicyJob.securityContext.runAsUser }}
                runAsGroup: {{ .Values.makePolicyJob.securityContext.runAsGroup }}
              {{- end }}
              imagePullPolicy: {{ .Values.mcImage.pullPolicy }}
              {{- if .Values.makePolicyJob.exitCommand }}
              command: [ "/bin/sh", "-c" ]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jul 08 19:18:31 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/testdata/healthcheck-rewrite.yaml

          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: istio-proxy
            image: auto
            imagePullPolicy: Always
            securityContext: # to allow core dumps
              readOnlyRootFilesystem: false
          - name: app
            image: testing.hub/app:latest
            imagePullPolicy: Always
            args:
              - --metrics=15014
              - --cluster=cluster-0
              - --grpc=7070
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. cluster/addons/metadata-agent/stackdriver/metadata-agent.yaml

          priorityClassName: system-node-critical
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - image: gcr.io/stackdriver-agents/stackdriver-metadata-agent:0.2-0.0.21-1
            imagePullPolicy: IfNotPresent
            name: metadata-agent
            livenessProbe:
              httpGet:
                path: /healthz
                port: 8000
              initialDelaySeconds: 30
              periodSeconds: 60
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 07:45:36 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

          priorityClassName: "{{ .Values.global.priorityClassName }}"
    {{- end }}
          containers:
            - name: istio-proxy
              image: auto
    {{- if .Values.global.imagePullPolicy }}
              imagePullPolicy: {{ .Values.global.imagePullPolicy }}
    {{- end }}
              ports:
                {{- range $key, $val := $gateway.ports }}
                - containerPort: {{ $val.targetPort | default $val.port }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

          priorityClassName: "{{ .Values.global.priorityClassName }}"
    {{- end }}
          containers:
            - name: istio-proxy
              image: auto
    {{- if .Values.global.imagePullPolicy }}
              imagePullPolicy: {{ .Values.global.imagePullPolicy }}
    {{- end }}
              ports:
                {{- range $key, $val := $gateway.ports }}
                - containerPort: {{ $val.targetPort | default $val.port }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. hack/testdata/recursive/pod/busybox.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: busybox0
      labels:
        app: busybox0
    spec:
      containers:
      - image: busybox
        command:
          - sleep
          - "3600"
        imagePullPolicy: IfNotPresent
        name: busybox
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 02 03:27:37 UTC 2016
    - 237 bytes
    - Viewed (0)
  8. hack/testdata/recursive/pod/pod/busybox.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: busybox1
      labels:
        app: busybox1
    spec:
      containers:
      - image: busybox
        command:
          - sleep
          - "3600"
        imagePullPolicy: IfNotPresent
        name: busybox
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 02 03:27:37 UTC 2016
    - 237 bytes
    - Viewed (0)
  9. manifests/charts/gateway/templates/deployment.yaml

              image: auto
              {{- with .Values.imagePullPolicy }}
              imagePullPolicy: {{ . }}
              {{- end }}
              securityContext:
              {{- if .Values.containerSecurityContext }}
                {{- toYaml .Values.containerSecurityContext | nindent 12 }}
              {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. samples/tcp-echo/tcp-echo-services.yaml

      template:
        metadata:
          labels:
            app: tcp-echo
            version: v1
        spec:
          containers:
          - name: tcp-echo
            image: docker.io/istio/tcp-echo-server:1.3
            imagePullPolicy: IfNotPresent
            args: [ "9000,9001,9002", "one" ]
            ports:
            - containerPort: 9000
            - containerPort: 9001
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tcp-echo-v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top