Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for DirectoryOrCreate (0.55 sec)

  1. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember_test.go

      - hostPath:
          path: /path/to/etcd
          type: DirectoryOrCreate
        name: etcd-data
      - hostPath:
          path: /etc/kubernetes/pki/etcd
          type: DirectoryOrCreate
        name: etcd-certs`
    
    	etcdPodWithoutDataVolume = `apiVersion: v1
    kind: Pod
    metadata:
    spec:
      volumes:
      - hostPath:
          path: /etc/kubernetes/pki/etcd
          type: DirectoryOrCreate
        name: etcd-certs`
    
    	etcdPodInvalid = `invalid pod`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 03:55:19 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/templates/daemonset.yaml

              hostPath:
                path: /var/run/istio-cni
            - name: cni-netns-dir
              hostPath:
                path: {{ .Values.cni.cniNetnsDir | default "/var/run/netns" }}
                type: DirectoryOrCreate # DirectoryOrCreate instead of Directory for the following reason - CNI may not bind mount this until a non-hostnetwork pod is scheduled on the node,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. cluster/gce/manifests/konnectivity-server.yaml

          type: FileOrCreate
      - name: pki
        hostPath:
          path: /etc/srv/kubernetes/pki
      - name: konnectivity-uds
        hostPath:
          path: /etc/srv/kubernetes/konnectivity-server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/etcd/local_test.go

      securityContext:
        seccompProfile:
          type: RuntimeDefault
      volumes:
      - hostPath:
          path: /etcd
          type: DirectoryOrCreate
        name: etcd-certs
      - hostPath:
          path: %s/etcd
          type: DirectoryOrCreate
        name: etcd-data
    status: {}
    `, tmpdir, kubeadmconstants.DefaultEtcdVersion, tmpdir, tmpdir),
    		},
    		{
    			cfg: &kubeadmapi.ClusterConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. manifests/charts/ztunnel/templates/daemonset.yaml

          - name: istiod-ca-cert
            configMap:
              name: istio-ca-root-cert
          - name: cni-ztunnel-sock-dir
            hostPath:
              path: /var/run/ztunnel
              type: DirectoryOrCreate # ideally this would be a socket, but ztunnel may not have started yet.
          # pprof needs a writable /tmp, and we don't have that thanks to `readOnlyRootFilesystem: true`, so mount one
          - name: tmp
            emptyDir: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-kubeapiserver.sh

        default_konnectivity_socket_vol="{ \"name\": \"konnectivity-socket\", \"hostPath\": {\"path\": \"${default_konnectivity_socket_path}\", \"type\": \"DirectoryOrCreate\"}},"
        default_konnectivity_socket_mnt="{ \"name\": \"konnectivity-socket\", \"mountPath\": \"${default_konnectivity_socket_path}\", \"readOnly\": false},"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. samples/security/spire/spire-quickstart.yaml

            # This volume is where the socket for kubelet->driver communication lives
            - name: spiffe-csi-socket-dir
              hostPath:
                path: /var/lib/kubelet/plugins/csi.spiffe.io
                type: DirectoryOrCreate
            # This volume is where the SPIFFE CSI driver mounts volumes
            - name: mountpoint-dir
              hostPath:
                path: /var/lib/kubelet/pods
                type: Directory
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  8. prow/config/calico.yaml

              hostPath:
                path: /run/xtables.lock
                type: FileOrCreate
            - name: sys-fs
              hostPath:
                path: /sys/fs/
                type: DirectoryOrCreate
            - name: bpffs
              hostPath:
                path: /sys/fs/bpf
                type: Directory
            # mount /proc at /nodeproc to be used by mount-bpffs initContainer to mount root cgroup2 fs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// If nothing exists at the given path, an empty directory will be created there
    	// as needed with file mode 0755, having the same group and ownership with Kubelet.
    	HostPathDirectoryOrCreate HostPathType = "DirectoryOrCreate"
    	// A directory must exist at the given path
    	HostPathDirectory HostPathType = "Directory"
    	// If nothing exists at the given path, an empty file will be created there
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// If nothing exists at the given path, an empty directory will be created there
    	// as needed with file mode 0755, having the same group and ownership with Kubelet.
    	HostPathDirectoryOrCreate HostPathType = "DirectoryOrCreate"
    	// A directory must exist at the given path
    	HostPathDirectory HostPathType = "Directory"
    	// If nothing exists at the given path, an empty file will be created there
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top