Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. releasenotes/notes/wasm-pull-policy-http.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 01 13:37:10 UTC 2022
    - 213 bytes
    - Viewed (0)
  7. pkg/test/datasets/validation/dataset/extensions-v1alpha1-WasmPlugin.yaml

    apiVersion: extensions.istio.io/v1alpha1
    kind: WasmPlugin
    metadata:
      name: valid
    spec:
      selector:
        matchLabels:
          istio: ingressgateway
      url: oci://private-registry:5000/openid-connect/openid:latest
      imagePullPolicy: IfNotPresent
      imagePullSecret: private-registry-pull-secret
      phase: AUTHN
      pluginConfig:
        openid_server: authn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 371 bytes
    - Viewed (0)
  8. tests/integration/ambient/wasm_test.go

    		"WasmPluginVersion": pluginVersion,
    		"TargetKind":        kind,
    		"TargetGroup":       group,
    		"TargetName":        name,
    	}
    
    	if len(imagePullPolicy) != 0 {
    		args["ImagePullPolicy"] = imagePullPolicy
    	}
    
    	if err := applyWasmConfig(ctx, apps.Namespace.Name(), args, path); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. pkg/registry/apps/replicaset/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}},
    			},
    		},
    	}
    	rs := &apps.ReplicaSet{
    		ObjectMeta: metav1.ObjectMeta{Name: "abc", Namespace: metav1.NamespaceDefault},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 09 21:04:31 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  10. releasenotes/notes/wasm-pull-policy.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 18 16:01:41 UTC 2022
    - 155 bytes
    - Viewed (0)
Back to top