Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for initContainers (0.2 sec)

  1. istioctl/pkg/kubeinject/testdata/deployment/hello-with-proxyconfig-anno.yaml.injected

            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            proxy.istio.io/config: '{ "holdApplicationUntilProxyStarts": true }'
            sidecar.istio.io/status: '{"initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":null,"imagePullSecrets":null,"revision":"default"}'
          creationTimestamp: null
          labels:
            app: hello
            tier: backend
            track: stable
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  2. istioctl/pkg/kubeinject/testdata/deployment/hello.yaml.iop.injected

      strategy: {}
      template:
        metadata:
          annotations:
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            sidecar.istio.io/status: '{"initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":null,"imagePullSecrets":null,"revision":"default"}'
          creationTimestamp: null
          labels:
            app: hello
            tier: backend
            track: stable
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  3. istioctl/pkg/kubeinject/testdata/inject-config-inline-iop.yaml

    spec:
      initContainers:
        - name: istio-init
          image: docker.io/istio/proxy_init:unittest-{{.Values.global.tag}}
      containers:
        - name: istio-proxy
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 207 bytes
    - Viewed (0)
  4. istioctl/pkg/kubeinject/testdata/deployment/hello.yaml.injected

      strategy: {}
      template:
        metadata:
          annotations:
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            sidecar.istio.io/status: '{"initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":null,"imagePullSecrets":null,"revision":"default"}'
          creationTimestamp: null
          labels:
            app: hello
            tier: backend
            track: stable
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 1K bytes
    - Viewed (0)
  5. istioctl/pkg/kubeinject/testdata/inject-config.yaml

    templates:
      sidecar: |-
        spec:
          initContainers:
          - name: istio-init
            image: docker.io/istio/proxy_init:unittest-{{.Values.global.suffix}}
          containers:
          - name: istio-proxy
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 255 bytes
    - Viewed (0)
  6. istioctl/pkg/kubeinject/testdata/inject-config-iop.yaml

    templates:
      sidecar: |-
        spec:
          initContainers:
          - name: istio-init
            image: docker.io/istio/proxy_init:unittest-{{.Values.global.tag}}
          containers:
          - name: istio-proxy
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 252 bytes
    - Viewed (0)
  7. istioctl/pkg/kubeinject/testdata/inject-config-inline.yaml

    spec:
      initContainers:
      - name: istio-init
        image: docker.io/istio/proxy_init:unittest-{{.Values.global.suffix}}
      containers:
      - name: istio-proxy
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 202 bytes
    - Viewed (0)
  8. cni/pkg/plugin/kubernetes.go

    // The sidecar can be a normal container or init in Kubernetes 1.28+
    func containers(pod *v1.Pod) []v1.Container {
    	res := make([]v1.Container, 0, len(pod.Spec.Containers)+len(pod.Spec.InitContainers))
    	res = append(res, pod.Spec.InitContainers...)
    	res = append(res, pod.Spec.Containers...)
    	return res
    }
    
    func (pi PodInfo) String() string {
    	var b strings.Builder
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/files/grpc-simple.yaml

    metadata:
      annotations:
        sidecar.istio.io/rewriteAppHTTPProbers: "false"
    spec:
      initContainers:
        - name: grpc-bootstrap-init
          image: busybox:1.28
          volumeMounts:
            - mountPath: /var/lib/grpc/data/
              name: grpc-io-proxyless-bootstrap
          env:
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
            - name: POD_NAME
              valueFrom:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed May 10 20:56:20 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  10. cni/pkg/repair/repair_test_helpers.go

    			Name:        args.PodName,
    			Namespace:   "default",
    			Labels:      args.Labels,
    			Annotations: args.Annotations,
    		},
    		Spec: corev1.PodSpec{
    			NodeName: args.NodeName,
    			Volumes:  nil,
    			InitContainers: []corev1.Container{
    				{
    					Name: args.InitContainerName,
    				},
    			},
    			Containers: []corev1.Container{
    				{
    					Name: "payload-container",
    				},
    			},
    		},
    		Status: corev1.PodStatus{
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri May 12 17:39:53 GMT 2023
    - 4.7K bytes
    - Viewed (0)
Back to top