Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for MountPath (0.17 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                      mountPath: /var/run/secrets/workload-spiffe-uds
                    - mountPath: /var/run/secrets/istio
                      name: istiod-ca-cert
                    - mountPath: /var/lib/istio/data
                      name: istio-data
                    - mountPath: /etc/istio/proxy
                      name: istio-envoy
                    - mountPath: /var/run/secrets/tokens
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    fieldRef: fieldPath: spec.nodeName volumeMounts: - name: workload-socket mountPath: /var/run/secrets/workload-spiffe-uds - name: credential-socket mountPath: /var/run/secrets/credential-uds - name: workload-certs mountPath: /var/run/secrets/workload-spiffe-credentials - name: istio-envoy mountPath: /etc/istio/proxy - name: config-volume mountPath: /etc/istio/config {{- if eq .Values.global.pilotCertProvider "istiod" }} - mountPath: /var/run/secrets/istio name: istiod-ca-cert {{- end }} {{- if eq .Va...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. cmd/storage-datatypes_gen.go

    		return
    	}
    	z.Endpoint, err = dc.ReadString()
    	if err != nil {
    		err = msgp.WrapError(err, "Endpoint")
    		return
    	}
    	z.MountPath, err = dc.ReadString()
    	if err != nil {
    		err = msgp.WrapError(err, "MountPath")
    		return
    	}
    	z.ID, err = dc.ReadString()
    	if err != nil {
    		err = msgp.WrapError(err, "ID")
    		return
    	}
    	z.Rotational, err = dc.ReadBool()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    		if utilfeature.DefaultFeatureGate.Enabled(features.RecursiveReadOnlyMounts) {
    			for _, vol := range container.VolumeMounts {
    				volStatus := v1.VolumeMountStatus{
    					Name:      vol.Name,
    					MountPath: vol.MountPath,
    					ReadOnly:  vol.ReadOnly,
    				}
    				if vol.ReadOnly {
    					rroMode := v1.RecursiveReadOnlyDisabled
    					if b, err := resolveRecursiveReadOnly(vol, supportsRRO); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

        CLOUD_CONFIG_VOLUME="{\"name\": \"cloudconfigmount\",\"hostPath\": {\"path\": \"/etc/gce.conf\", \"type\": \"FileOrCreate\"}},"
        CLOUD_CONFIG_MOUNT="{\"name\": \"cloudconfigmount\",\"mountPath\": \"/etc/gce.conf\", \"readOnly\": true},"
      fi
      DOCKER_REGISTRY="registry.k8s.io"
      if [[ -n "${KUBE_DOCKER_REGISTRY:-}" ]]; then
        DOCKER_REGISTRY="${KUBE_DOCKER_REGISTRY}"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

              volumeMounts:
                - name: config
                  mountPath: "/etc/grafana/grafana.ini"
                  subPath: grafana.ini
                - name: storage
                  mountPath: "/var/lib/grafana"
                - name: dashboards-istio
                  mountPath: "/var/lib/grafana/dashboards/istio"
                - name: dashboards-istio-services
                  mountPath: "/var/lib/grafana/dashboards/istio-services"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    [@pwittrock](https://github.com/pwittrock))
    
    * The strategicmerge patchMergeKey for VolumeMounts was changed from "name" to "mountPath".  This was necessary because the name field refers to the name of the Volume, and is not a unique key for the VolumeMount.  Multiple VolumeMounts will have the same Volume name if mounting the same volume more than once.  The "mountPath" is verified to be unique and can act as the mergekey.  ([#35071](https://github.com/kubernetes/kubernetes/pull/35071), [@pwit...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.VolumeMount"
              },
              "type": "array",
              "x-kubernetes-patch-merge-key": "mountPath",
              "x-kubernetes-patch-strategy": "merge"
            },
            "workingDir": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.4.md

    ### Other notable changes
    
    * Update the GCI image to gci-dev-55-8872-18-0 ([#35243](https://github.com/kubernetes/kubernetes/pull/35243), [@maisem](https://github.com/maisem))
    * Change merge key for VolumeMount to mountPath ([#35071](https://github.com/kubernetes/kubernetes/pull/35071), [@thockin](https://github.com/thockin))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top