Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 519 for ImagePullPolicy (0.2 sec)

  1. pkg/config/analysis/analyzers/testdata/deployment-pod-sec-uid.yaml

            runAsUser: 1337
          containers:
          - name: helloworld
            image: docker.io/istio/examples-helloworld-v1
            resources:
              requests:
                cpu: "100m"
            imagePullPolicy: IfNotPresent #Always
            ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 600 bytes
    - Viewed (0)
  2. samples/custom-bootstrap/example-app.yaml

            version: v1
        spec:
          containers:
            - name: helloworld
              image: docker.io/istio/examples-helloworld-v1
              resources:
                requests:
                  cpu: "100m"
              imagePullPolicy: IfNotPresent
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 15 15:42:01 UTC 2020
    - 654 bytes
    - Viewed (0)
  3. samples/websockets/app.yaml

      template:
        metadata:
          labels:
            app: tornado
            version: v1
        spec:
          containers:
          - name: tornado
            image: hiroakis/tornado-websocket-example
            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 8888
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 07 20:03:32 UTC 2020
    - 598 bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

            - "-k"
            - "{{ index .ObjectMeta.Annotations `traffic.sidecar.istio.io/kubevirtInterfaces` }}"
            {{ end -}}
            imagePullPolicy: "{{ valueOrDefault .Values.global.imagePullPolicy `Always` }}"
          {{- if .Values.global.proxy_init.resources }}
            resources:
              {{ toYaml .Values.global.proxy_init.resources | indent 4 }}
          {{- else }}
            resources: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/deployment-con-sec-uid.yaml

          - name: helloworld
            image: docker.io/istio/examples-helloworld-v1
            securityContext:
              runAsUser: 1337
            resources:
              requests:
                cpu: "100m"
            imagePullPolicy: IfNotPresent #Always
            ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 651 bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

    {{- end }}
    {{- if .Values.global.imagePullPolicy }}
              imagePullPolicy: {{ .Values.global.imagePullPolicy }}
    {{- end }}
              args:
              - "discovery"
              - --monitoringAddr=:15014
    {{- if .Values.global.logging.level }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. manifests/charts/istio-cni/templates/daemonset.yaml

    {{- end }}
    {{- if or .Values.cni.pullPolicy .Values.global.imagePullPolicy }}
              imagePullPolicy: {{ .Values.cni.pullPolicy | default .Values.global.imagePullPolicy }}
    {{- end }}
              readinessProbe:
                httpGet:
                  path: /readyz
                  port: 8000
              securityContext:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. pkg/registry/core/replicationcontroller/strategy_test.go

    				Labels: validSelector,
    			},
    			Spec: api.PodSpec{
    				RestartPolicy: api.RestartPolicyAlways,
    				DNSPolicy:     api.DNSClusterFirst,
    				Containers:    []api.Container{{Name: "abc", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: api.TerminationMessageReadFile}},
    			},
    		},
    	}
    	rc := &api.ReplicationController{
    		ObjectMeta: metav1.ObjectMeta{Name: "abc", Namespace: metav1.NamespaceDefault},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 16:56:29 UTC 2019
    - 6.9K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/external-forward-proxy-deployment.yaml

        spec:
          securityContext:
            runAsUser: 65534
            runAsGroup: 65534
            fsGroup: 65534
          containers:
          - name: external-forward-proxy
            image: envoyproxy/envoy:v1.21.0
            imagePullPolicy: IfNotPresent
            volumeMounts:
            - name: external-forward-proxy-config
              mountPath: /etc/envoy
          volumes:
          - name: external-forward-proxy-config
            configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 08:07:45 UTC 2023
    - 701 bytes
    - Viewed (0)
  10. pkg/apis/apps/validation/validation_test.go

    		Containers:    []api.Container{{Name: "abc", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: api.TerminationMessageReadFile}},
    	}
    	validPodSpecDef := api.PodSpec{
    		RestartPolicy: api.RestartPolicyAlways,
    		DNSPolicy:     api.DNSClusterFirst,
    		Containers:    []api.Container{{Name: "def", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: api.TerminationMessageReadFile}},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
Back to top