Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 433 for VolumeMounts (0.18 sec)

  1. cluster/gce/manifests/konnectivity-server.yaml

        - name: healthport
          containerPort: {{ health_port }}
          hostPort: {{ health_port }}
        - name: adminport
          containerPort: {{ admin_port }}
          hostPort: {{ admin_port }}
        volumeMounts:
        - name: varlogkonnectivityserver
          mountPath: /var/log/konnectivity-server.log
          readOnly: false
        - name: pki
          mountPath: /etc/srv/kubernetes/pki
          readOnly: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/controlplane/volumes_test.go

    			delete(mounts.volumeMounts[kubeadmconstants.KubeControllerManager], flexvolumeDirVolumeName)
    			if !reflect.DeepEqual(mounts.volumes, rt.vol) {
    				t.Errorf(
    					"failed getHostPathVolumesForTheControlPlane:\n\texpected: %v\n\t  actual: %v",
    					rt.vol,
    					mounts.volumes,
    				)
    			}
    			if !reflect.DeepEqual(mounts.volumeMounts, rt.volMount) {
    				t.Errorf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. cluster/gce/manifests/kube-addon-manager.yaml

        command:
        - /bin/bash
        - -c
        - exec /opt/kube-addons-main.sh 1>>/var/log/kube-addon-manager.log 2>&1
        resources:
          requests:
            cpu: 5m
            memory: 50Mi
        volumeMounts:
        - mountPath: /etc/kubernetes/
          name: addons
          readOnly: true
        - mountPath: /var/log
          name: varlog
          readOnly: false
        - mountPath: /etc/srv/kubernetes/addon-manager/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 03:09:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. cluster/addons/dns/kube-dns/kube-dns.yaml.in

              protocol: UDP
            - containerPort: 10053
              name: dns-tcp-local
              protocol: TCP
            - containerPort: 10055
              name: metrics
              protocol: TCP
            volumeMounts:
            - name: kube-dns-config
              mountPath: /kube-dns-config
            securityContext:
              allowPrivilegeEscalation: false
              readOnlyRootFilesystem: true
              runAsUser: 1001
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. samples/bookinfo/platform/kube/bookinfo-mysql.yaml

                valueFrom:
                  secretKeyRef:
                    name: mysql-credentials
                    key: rootpasswd
            args: ["--default-authentication-plugin","mysql_native_password"]
            volumeMounts:
            - name: var-lib-mysql
              mountPath: /var/lib/mysql
          volumes:
          - name: var-lib-mysql
            emptyDir: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    	b.RestartPolicy = &value
    	return b
    }
    
    // WithVolumeMounts adds the given value to the VolumeMounts field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the VolumeMounts field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. cluster/addons/ip-masq-agent/ip-masq-agent.yaml

              - --nomasq-all-reserved-ranges
            resources:
              requests:
                cpu: 10m
                memory: 16Mi
            securityContext:
              privileged: true
            volumeMounts:
              - name: config
                mountPath: /etc/config
          nodeSelector:
            kubernetes.io/os: linux
            node.kubernetes.io/masq-agent-ds-ready: "true"
          volumes:
            - name: config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. pkg/api/pod/util.go

    		for i := range podSpec.Containers {
    			for j := range podSpec.Containers[i].VolumeMounts {
    				podSpec.Containers[i].VolumeMounts[j].RecursiveReadOnly = nil
    			}
    		}
    		for i := range podSpec.InitContainers {
    			for j := range podSpec.InitContainers[i].VolumeMounts {
    				podSpec.InitContainers[i].VolumeMounts[j].RecursiveReadOnly = nil
    			}
    		}
    		for i := range podSpec.EphemeralContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  10. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

                    fieldRef:
                      fieldPath: status.hostIP
              resources:
                requests:
                  cpu: 50m
                limits:
                  memory: 30Mi
              volumeMounts:
    __EXTRA_VOL_MNTS__
                - mountPath: /var/run/secrets/tokens
                  name: konnectivity-agent-token
              livenessProbe:
                httpGet:
                  port: 8093
                  path: /healthz
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top