Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for ImagePullPolicy (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. samples/bookinfo/platform/kube/bookinfo-dualstack.yaml

            app: details
            version: v1
        spec:
          serviceAccountName: bookinfo-details
          containers:
          - name: details
            image: docker.io/istio/examples-bookinfo-details-v1:1.20.1
            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 9080
    ---
    ##################################################################################################
    # Ratings service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. samples/bookinfo/platform/kube/bookinfo-psa.yaml

            app: details
            version: v1
        spec:
          serviceAccountName: bookinfo-details
          containers:
          - name: details
            image: docker.io/istio/examples-bookinfo-details-v1:1.20.1
            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 9080
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                  - all
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. samples/bookinfo/platform/kube/bookinfo.yaml

            app: details
            version: v1
        spec:
          serviceAccountName: bookinfo-details
          containers:
          - name: details
            image: docker.io/istio/examples-bookinfo-details-v1:1.20.1
            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 9080
    ---
    ##################################################################################################
    # Ratings service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/upgrade/node/preflight.go

    	if data.IsControlPlaneNode() {
    		// Update the InitConfiguration used for RunPullImagesCheck with ImagePullPolicy and ImagePullSerial
    		// that come from UpgradeNodeConfiguration.
    		initConfig := data.InitCfg()
    		initConfig.NodeRegistration.ImagePullPolicy = data.Cfg().Node.ImagePullPolicy
    		initConfig.NodeRegistration.ImagePullSerial = data.Cfg().Node.ImagePullSerial
    
    		if !data.DryRun() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. samples/helloworld/helloworld.yaml

            version: v1
        spec:
          containers:
          - name: helloworld
            image: docker.io/istio/examples-helloworld-v1:1.0
            resources:
              requests:
                cpu: "100m"
            imagePullPolicy: IfNotPresent #Always
            ports:
            - containerPort: 5000
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v2
      labels:
        app: helloworld
        version: v2
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. samples/helloworld/helloworld-dual-stack.yaml

            version: v1
        spec:
          containers:
          - name: helloworld
            image: docker.io/istio/examples-helloworld-v1:1.0
            resources:
              requests:
                cpu: "100m"
            imagePullPolicy: IfNotPresent #Always
            ports:
            - containerPort: 5000
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v2
      labels:
        app: helloworld
        version: v2
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    	}
    }
    
    // SetDefaults_NodeRegistration sets the defaults for the NodeRegistrationOptions object
    func SetDefaults_NodeRegistration(obj *NodeRegistrationOptions) {
    	if len(obj.ImagePullPolicy) == 0 {
    		obj.ImagePullPolicy = DefaultImagePullPolicy
    	}
    	if obj.ImagePullSerial == nil {
    		obj.ImagePullSerial = ptr.To(true)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top