Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 519 for ImagePullPolicy (0.21 sec)

  1. plugin/pkg/admission/alwayspullimages/admission_test.go

    				{Name: "init2", Image: "image", ImagePullPolicy: api.PullNever},
    				{Name: "init3", Image: "image", ImagePullPolicy: api.PullIfNotPresent},
    				{Name: "init4", Image: "image", ImagePullPolicy: api.PullAlways},
    			},
    			Containers: []api.Container{
    				{Name: "ctr1", Image: "image"},
    				{Name: "ctr2", Image: "image", ImagePullPolicy: api.PullNever},
    				{Name: "ctr3", Image: "image", ImagePullPolicy: api.PullIfNotPresent},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 30 22:59:57 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/config/upgradeconfiguration_test.go

    					CertificateRenewal: ptr.To(true),
    					EtcdUpgrade:        ptr.To(true),
    					ImagePullPolicy:    v1.PullIfNotPresent,
    					ImagePullSerial:    ptr.To(true),
    				},
    				Node: kubeadmapi.UpgradeNodeConfiguration{
    					CertificateRenewal: ptr.To(true),
    					EtcdUpgrade:        ptr.To(true),
    					ImagePullPolicy:    v1.PullIfNotPresent,
    					ImagePullSerial:    ptr.To(true),
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_termination_order_test.go

    					Image:           "busybox",
    					ImagePullPolicy: v1.PullIfNotPresent,
    					RestartPolicy:   &restartPolicy,
    				},
    				{
    					Name:            "sc2",
    					Image:           "busybox",
    					ImagePullPolicy: v1.PullIfNotPresent,
    					RestartPolicy:   &restartPolicy,
    				},
    				{
    					Name:            "sc3",
    					Image:           "busybox",
    					ImagePullPolicy: v1.PullIfNotPresent,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 00:07:21 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/testdata/gateway-wasm-filter.yaml

        group: gateway.networking.k8s.io
        name: {{ .TargetGatewayName}}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
      {{- if .ImagePullPolicy }}
      imagePullPolicy: {{ .ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:48:31 UTC 2023
    - 516 bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/testdata/wasm-filter.yaml

      selector:
        matchLabels:
          app: {{ .TargetAppName }}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
      {{- if .ImagePullPolicy }}
      imagePullPolicy: {{ .ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 475 bytes
    - Viewed (0)
  6. tests/integration/pilot/gw_topology_test.go

        spec:
          {{- if ne .imagePullSecret "" }}
          imagePullSecrets:
          - name: {{ .imagePullSecret }}
          {{- end }}
          containers:
          - name: istio-proxy
            image: auto
            imagePullPolicy: {{ .imagePullPolicy }}
    ---
    `).ApplyOrFail(t, apply.NoCleanup)
    			cs := t.Clusters().Default().(*kubecluster.Cluster)
    			retry.UntilSuccessOrFail(t, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. tests/integration/ambient/testdata/wasm-filter.yaml

        group: {{ .TargetGroup }}
        name: {{ .TargetName }}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
      {{- if .ImagePullPolicy }}
      imagePullPolicy: {{ .ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 513 bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    }}
          - name: istio-proxy
            image: auto
            imagePullPolicy: {{ $.ImagePullPolicy }}
            securityContext: # to allow core dumps
              readOnlyRootFilesystem: false
    {{- end }}
    {{- if $.IncludeExtAuthz }}
          - name: ext-authz
            image: {{ $.ImageHub }}/ext-authz:{{ $.ImageTag }}
            imagePullPolicy: {{ $.ImagePullPolicy }}
            ports:
            - containerPort: 8000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions.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
    - 3.9K bytes
    - Viewed (0)
  10. manifests/charts/istio-operator/templates/deployment.yaml

                runAsNonRoot: true
    {{- if .Values.operator.seccompProfile }}
                seccompProfile:
    {{ toYaml .Values.operator.seccompProfile | trim | indent 14 }}
    {{- end }}
    {{- if .Values.imagePullPolicy }}
              imagePullPolicy: {{ .Values.imagePullPolicy }}
    {{- end }}
              resources:
    {{ toYaml .Values.operator.resources | trim | indent 12 }}
              env:
                - name: WATCH_NAMESPACE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top