Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 525 for VolumeMounts (0.16 sec)

  1. 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)
  2. tests/integration/security/fuzz/backends/nginx/nginx.yaml

      template:
        metadata:
          labels:
            app: nginx
        spec:
          containers:
            - name: nginx
              image: nginx:1.20.0
              ports:
                - containerPort: 80
              volumeMounts:
                - name: public-html
                  mountPath: /usr/share/nginx/html/private
          volumes:
            - name: public-html
              configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 09 15:40:48 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. tests/integration/security/fuzz/backends/apache/apache.yaml

        spec:
          serviceAccountName: apache
          containers:
          - image: httpd:2.4.46
            imagePullPolicy: IfNotPresent
            name: apache
            ports:
            - containerPort: 80
            volumeMounts:
              - name: public-html
                mountPath: /usr/local/apache2/htdocs/private/
          volumes:
            - name: public-html
              configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 09 15:40:48 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cluster/addons/dns/kube-dns/kube-dns.yaml.base

              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)
  10. cluster/gce/manifests/kube-controller-manager.manifest

          "httpGet": {
            "host": "127.0.0.1",
            "port": 10257,
            "scheme": "HTTPS",
            "path": "/healthz"
          },
          "initialDelaySeconds": 15,
          "timeoutSeconds": 15
        },
        "volumeMounts": [
            {{cloud_config_mount}}
            {{additional_cloud_config_mount}}
            {{pv_recycler_mount}}
            { "name": "srvkube",
            "mountPath": "/etc/srv/kubernetes",
            "readOnly": true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 10 20:49:36 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top