Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 204 for VolumeMounts (0.15 sec)

  1. releasenotes/notes/helm_chart_pilot_extraargsvolumes

    issue:
    - https://github.com/cert-manager/istio-csr/issues/113
    
    docs: []
    
    releaseNotes:
    - |
      **Added** values to the Istio Pilot Helm charts for configuring additional container arguments, volumeMounts, and volumes. Can be used in conjunction with cert-manager istio-csr.
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 23 15:25:03 UTC 2023
    - 430 bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/external-forward-proxy-deployment.yaml

            runAsUser: 65534
            runAsGroup: 65534
            fsGroup: 65534
          containers:
          - name: external-forward-proxy
            image: envoyproxy/envoy:v1.21.0
            imagePullPolicy: IfNotPresent
            volumeMounts:
            - name: external-forward-proxy-config
              mountPath: /etc/envoy
          volumes:
          - name: external-forward-proxy-config
            configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 08:07:45 UTC 2023
    - 701 bytes
    - Viewed (0)
  3. samples/ambient-argo/application/productpage.yaml

          containers:
          - name: productpage
            image: docker.io/istio/examples-bookinfo-productpage-v1:1.18.0
            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 9080
            volumeMounts:
            - name: tmp
              mountPath: /tmp
          volumes:
          - name: tmp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. docs/tls/kubernetes/README.md

                path: CAs/public.crt
    ```
    
    Note that the `secretName` should be same as the secret name created in previous step. Then add the below section under
    `spec.containers[].volumeMounts[]`
    
    ```yaml
        volumeMounts:
            - name: secret-volume
              mountPath: /<user-running-minio>/.minio/certs
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/proxy-override.yaml

                initialDelaySeconds: 10
                periodSeconds: 2
                timeoutSeconds: 3
              # Check various types merge find
              tty: true
              terminationMessagePath: "/foo/bar"
              volumeMounts:
                - mountPath: /etc/certs
                  name: certs
              lifecycle:
                preStop:
                  exec:
                    command: ["sleep", "10"]
              securityContext:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 19:52:06 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. manifests/charts/gateway/values.yaml

      # A list of `Volumes` added into the Gateway Pods. See
      # https://kubernetes.io/docs/concepts/storage/volumes/.
      volumes: []
    
      # A list of `VolumeMounts` added into the Gateway Pods. See
      # https://kubernetes.io/docs/concepts/storage/volumes/.
      volumeMounts: []
    
      # Configure this to a higher priority class in order to make sure your Istio gateway pods
      # will not be killed because of low priority class.
    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. cluster/addons/calico-policy-controller/calico-node-vertical-autoscaler-deployment.yaml

                - --namespace=kube-system
                - --logtostderr=true
                - --poll-period-seconds=30
                - --v=2
                - --config-file=/etc/config/node-autoscaler
              volumeMounts:
                - name: config
                  mountPath: /etc/config
          volumes:
            - name: config
              configMap:
                name: calico-node-vertical-autoscaler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/custom-template.iop.yaml

                - name: {{ $container.Name }}
                  env:
                  - name: SOME_ENV
                    value: "true"
                  - name: SOME_FILE
                    value: /var/lib/data/foo.json
                  volumeMounts:
                  - mountPath: /var/lib/data/foo.json
                    subPath: foo.json
                    name: some-injected-file
                {{- end}}
                volumes:
                - name: some-injected-file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 06 23:34:59 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/statefulset.yaml.injected

        spec:
          containers:
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            name: hello
            ports:
            - containerPort: 80
              name: http
            resources: {}
            volumeMounts:
            - mountPath: /var/lib/data
              name: data
          - args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.cluster.local
            - --proxyLogLevel=warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. manifests/charts/ztunnel/templates/daemonset.yaml

            {{- end }}
            {{- end }}
            volumeMounts:
            - mountPath: /var/run/secrets/istio
              name: istiod-ca-cert
            - mountPath: /var/run/secrets/tokens
              name: istio-token
            - mountPath: /var/run/ztunnel
              name: cni-ztunnel-sock-dir
            - mountPath: /tmp
              name: tmp
            {{- with .Values.volumeMounts }}
              {{- toYaml . | nindent 8 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top