Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 214 for VolumeMounts (0.14 sec)

  1. samples/ratelimit/rate-limit-service.yaml

            - name: HOST
              value: "::"
            - name: GRPC_HOST
              value: "::"
            ports:
            - containerPort: 8080
            - containerPort: 8081
            - containerPort: 6070
            volumeMounts:
            - name: config-volume
              mountPath: /data/ratelimit/config
          volumes:
          - name: config-volume
            configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. samples/addons/jaeger.yaml

              livenessProbe:
                httpGet:
                  path: /
                  port: 14269
              readinessProbe:
                httpGet:
                  path: /
                  port: 14269
              volumeMounts:
                - name: data
                  mountPath: /badger
              resources:
                requests:
                  cpu: 10m
          volumes:
            - name: data
              emptyDir: {}
    ---
    apiVersion: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

                  drop:
                  - ALL
    {{- if .Values.pilot.seccompProfile }}
                seccompProfile:
    {{ toYaml .Values.pilot.seccompProfile | trim | indent 14 }}
    {{- end }}
              volumeMounts:
              - name: istio-token
                mountPath: /var/run/secrets/tokens
                readOnly: true
              - name: local-certs
                mountPath: /var/run/secrets/istio-dns
              - name: cacerts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. cluster/gce/manifests/etcd.manifest

            "hostPort": {{ server_port }}
          },
          { "name": "clientport",
            "containerPort": {{ port }},
            "hostPort": {{ port }}
          }
            ],
        "volumeMounts": [
          { "name": "varetcd",
            "mountPath": "/var/etcd",
            "readOnly": false
          },
          { "name": "varlogetcd",
            "mountPath": "/var/log/etcd{{ suffix }}.log",
            "readOnly": false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. cluster/addons/node-problem-detector/npd.yaml

              requests:
                cpu: "20m"
                memory: "20Mi"
            env:
            - name: NODE_NAME
              valueFrom:
                fieldRef:
                  fieldPath: spec.nodeName
            volumeMounts:
            - name: log
              mountPath: /var/log
            - name: kmsg
              mountPath: /dev/kmsg
              readOnly: true
            - name: localtime
              mountPath: /etc/localtime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

                value: "true"
              {{- end }}
              {{- range $key, $val := $gateway.env }}
              - name: {{ $key }}
                value: {{ $val | quote }}
              {{- end }}
              volumeMounts:
              {{- range $gateway.secretVolumes }}
              - name: {{ .name }}
                mountPath: {{ .mountPath | quote }}
                readOnly: true
              {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

                value: "true"
              {{- end }}
              {{- range $key, $val := $gateway.env }}
              - name: {{ $key }}
                value: {{ $val | quote }}
              {{- end }}
              volumeMounts:
              {{- range $gateway.secretVolumes }}
              - name: {{ .name }}
                mountPath: {{ .mountPath | quote }}
                readOnly: true
              {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_windows_test.go

    )
    
    func TestMakeMountsWindows(t *testing.T) {
    	// TODO: remove skip once the failing test has been fixed.
    	t.Skip("Skip failing test on Windows.")
    	container := v1.Container{
    		VolumeMounts: []v1.VolumeMount{
    			{
    				MountPath: "c:/etc/hosts",
    				Name:      "disk",
    				ReadOnly:  false,
    			},
    			{
    				MountPath: "c:/mnt/path3",
    				Name:      "disk",
    				ReadOnly:  true,
    			},
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.yaml

            terminationMessagePolicy: terminationMessagePolicyValue
            tty: true
            volumeDevices:
            - devicePath: devicePathValue
              name: nameValue
            volumeMounts:
            - mountPath: mountPathValue
              mountPropagation: mountPropagationValue
              name: nameValue
              readOnly: true
              recursiveReadOnly: recursiveReadOnlyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top