Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ImagePullPolicy (0.29 sec)

  1. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	obj.Node.EtcdUpgrade = ptr.To(true)
    	obj.Node.CertificateRenewal = ptr.To(false)
    	obj.Node.ImagePullPolicy = corev1.PullIfNotPresent
    	obj.Node.ImagePullSerial = ptr.To(true)
    
    	obj.Apply.EtcdUpgrade = ptr.To(true)
    	obj.Apply.CertificateRenewal = ptr.To(false)
    	obj.Apply.ImagePullPolicy = corev1.PullIfNotPresent
    	obj.Apply.ImagePullSerial = ptr.To(true)
    
    	kubeadm.SetDefaultTimeouts(&obj.Timeouts)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. 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)
  3. manifests/charts/ztunnel/templates/daemonset.yaml

              name: ztunnel-stats
              protocol: TCP
            resources:
    {{- if .Values.resources }}
    {{ toYaml .Values.resources | trim | indent 10 }}
    {{- end }}
    {{- with .Values.imagePullPolicy }}
            imagePullPolicy: {{ . }}
    {{- end }}
            securityContext:
              allowPrivilegeEscalation: false
              privileged: false
              capabilities:
                drop:
                - ALL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		{
    			Name:            "init1",
    			Image:           "init",
    			ImagePullPolicy: v1.PullIfNotPresent,
    		},
    	}
    	containers := []v1.Container{
    		{
    			Name:            "foo1",
    			Image:           "busybox",
    			ImagePullPolicy: v1.PullIfNotPresent,
    		},
    		{
    			Name:            "foo2",
    			Image:           "alpine",
    			ImagePullPolicy: v1.PullIfNotPresent,
    		},
    	}
    	pod := &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. samples/addons/prometheus.yaml

          serviceAccountName: prometheus
          containers:
            - name: prometheus-server-configmap-reload
              image: "ghcr.io/prometheus-operator/prometheus-config-reloader:v0.73.2"
              imagePullPolicy: "IfNotPresent"
              args:
                - --watched-dir=/etc/config
                - --reload-url=http://127.0.0.1:9090/-/reload
              volumeMounts:
                - name: config-volume
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. manifests/charts/gateway/values.yaml

      networkGateway: ""
    
      # Specify image pull policy if default behavior isn't desired.
      # Default behavior: latest images will be Always else IfNotPresent
      imagePullPolicy: ""
    
      imagePullSecrets: []
    
      # This value is used to configure a Kubernetes PodDisruptionBudget for the gateway.
      #
      # By default, the `podDisruptionBudget` is disabled (set to `{}`),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. samples/addons/loki.yaml

            runAsNonRoot: true
            runAsUser: 10001
          terminationGracePeriodSeconds: 30
          containers:
            - name: loki
              image: docker.io/grafana/loki:3.0.0
              imagePullPolicy: IfNotPresent
              args:
                - -config.file=/etc/loki/config/config.yaml
                - -target=all
              ports:
                - name: http-metrics
                  containerPort: 3100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. samples/addons/kiali.yaml

            prometheus.io/port: "9090"
            kiali.io/dashboards: go,kiali
        spec:
          serviceAccountName: kiali
          containers:
          - image: "quay.io/kiali/kiali:v1.85"
            imagePullPolicy: IfNotPresent
            name: kiali
            command:
            - "/opt/kiali/kiali"
            - "-config"
            - "/kiali-configuration/config.yaml"
            securityContext:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    						},
    						Spec: api.PodSpec{
    							Containers: []api.Container{
    								{
    									Name:                     "test",
    									Image:                    "test_image",
    									ImagePullPolicy:          api.PullIfNotPresent,
    									TerminationMessagePolicy: api.TerminationMessageReadFile,
    								},
    							},
    							RestartPolicy: api.RestartPolicyAlways,
    							DNSPolicy:     api.DNSClusterFirst,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    	assert.NoError(t, err)
    
    	pod := podWithUIDNameNsSpec("12345678", "foo", "new", v1.PodSpec{
    		Containers: []v1.Container{
    			{
    				Name:            "bar",
    				Image:           "test:latest",
    				ImagePullPolicy: v1.PullAlways,
    			},
    		},
    		EnableServiceLinks: utilpointer.Bool(false),
    	})
    
    	_, err = kubelet.SyncPod(context.Background(), kubetypes.SyncPodCreate, pod, nil, &kubecontainer.PodStatus{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top