Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 525 for VolumeMounts (0.14 sec)

  1. 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)
  2. 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)
  3. cluster/gce/manifests/glbc.manifest

          initialDelaySeconds: 30
          # healthz reaches out to GCE
          periodSeconds: 30
          timeoutSeconds: 15
          successThreshold: 1
          failureThreshold: 5
        name: l7-lb-controller
        volumeMounts:
        - mountPath: /etc/gce.conf
          name: cloudconfig
          readOnly: true
        - mountPath: /var/log/glbc.log
          name: logfile
          readOnly: false
        - mountPath: /etc/srv/kubernetes/l7-lb-controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 10:40:01 UTC 2023
    - 2.8K 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. staging/src/k8s.io/apimachinery/pkg/util/managedfields/pod.yaml

        imagePullPolicy: IfNotPresent
        name: some-name
        resources:
          requests:
            cpu: '0'
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
        volumeMounts:
        - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
          name: default-token-hu5jz
          readOnly: true
      dnsPolicy: ClusterFirst
      nodeName: node-name
      priority: 0
      restartPolicy: Always
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/pod.yaml

        imagePullPolicy: IfNotPresent
        name: some-name
        resources:
          requests:
            cpu: '0'
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
        volumeMounts:
        - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
          name: default-token-hu5jz
          readOnly: true
      dnsPolicy: ClusterFirst
      nodeName: node-name
      priority: 0
      restartPolicy: Always
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 25 19:51:58 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  7. 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)
  8. manifests/charts/gateway/values.schema.json

              "type": "number"
            },
            "volumes": {
              "type": "array",
              "items": {
                "type": "object"
              }
            },
            "volumeMounts": {
              "type": "array",
              "items": {
                "type": "object"
              }
            },
            "priorityClassName": {
              "type": "string"
            }
          }
        }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 18 16:33:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/addons/proxy/manifests.go

            command:
            - /usr/local/bin/kube-proxy
            - --config=/var/lib/kube-proxy/{{ .ProxyConfigMapKey }}
            - --hostname-override=$(NODE_NAME)
            securityContext:
              privileged: true
            volumeMounts:
            - mountPath: /var/lib/kube-proxy
              name: kube-proxy
            - mountPath: /run/xtables.lock
              name: xtables-lock
              readOnly: false
            - mountPath: /lib/modules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 06:51:57 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/sidecar_template.golden.yaml

                  runAsUser: {{ .ProxyUID | default "1337" }}
                  {{- end }}
                  {{- end }}
                resources:
              {{ template "resources" . }}
                volumeMounts:
                - name: workload-socket
                  mountPath: /var/run/secrets/workload-spiffe-uds
                - name: credential-socket
                  mountPath: /var/run/secrets/credential-uds
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 86.9K bytes
    - Viewed (0)
Back to top