Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 89 for volumeID (0.14 sec)

  1. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml.injected

            sidecar.istio.io/status: '{"initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":["workload-socket","credential-socket","workload-certs","istio-envoy","istio-data","istio-podinfo","istio-token","istiod-ca-cert"],"imagePullSecrets":null,"revision":"default"}'
          creationTimestamp: null
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. samples/bookinfo/platform/kube/bookinfo-db.yaml

            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 27017
            volumeMounts:
            - name: data-db
              mountPath: /data/db
          volumes:
          - name: data-db
            emptyDir: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. cluster/addons/ip-masq-agent/ip-masq-agent.yaml

            volumeMounts:
              - name: config
                mountPath: /etc/config
          nodeSelector:
            kubernetes.io/os: linux
            node.kubernetes.io/masq-agent-ds-ready: "true"
          volumes:
            - name: config
              configMap:
                # Note this ConfigMap must be created in the same namespace as the daemon pods - this spec uses kube-system
                name: ip-masq-agent
                optional: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. samples/bookinfo/platform/kube/bookinfo-mysql.yaml

                    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. src/internal/filepathlite/path_unix.go

    	}
    	return path, nil
    }
    
    // IsAbs reports whether the path is absolute.
    func IsAbs(path string) bool {
    	return stringslite.HasPrefix(path, "/")
    }
    
    // volumeNameLen returns length of the leading volume name on Windows.
    // It returns 0 elsewhere.
    func volumeNameLen(path string) int {
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 935 bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.values.gen.yaml

        }
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

                mountPath: /var/run/secrets/istiod/ca
                readOnly: true
              {{- with .Values.pilot.volumeMounts }}
                {{- toYaml . | nindent 10 }}
              {{- end }}
          volumes:
          # Technically not needed on this pod - but it helps debugging/testing SDS
          # Should be removed after everything works.
          - emptyDir:
              medium: Memory
            name: local-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. cluster/gce/manifests/etcd.manifest

            "readOnly": false
          },
          { "name": "etc",
            "mountPath": "/etc/srv/kubernetes",
            "readOnly": false
          }
        ]
        }
    ],
    "volumes":[
      { "name": "varetcd",
        "hostPath": {
            "path": "/mnt/master-pd/var/etcd"}
      },
      { "name": "varlogetcd",
        "hostPath": {
            "path": "/var/log/etcd{{ suffix }}.log",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. cluster/gce/manifests/cloud-controller-manager.manifest

            { "name": "etcopenssl",
            "mountPath": "/etc/openssl",
            "readOnly": true},
            { "name": "etcpki",
            "mountPath": "/etc/pki",
            "readOnly": true}
          ]
        }
    ],
    "volumes":[
      {{cloud_config_volume}}
      {{additional_cloud_config_volume}}
      {{pv_recycler_volume}}
      { "name": "srvkube",
        "hostPath": {
            "path": "/etc/srv/kubernetes"}
      },
      {{flexvolume_hostpath}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 08:50:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. pkg/volume/noop_expandable_plugin.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package volume
    
    import (
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    type noopExpandableVolumePluginInstance struct {
    	spec *Spec
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top