Add glide.yaml and vendor deps
This commit is contained in:
parent
db918f12ad
commit
5b3d5e81bd
18880 changed files with 5166045 additions and 1 deletions
21
vendor/k8s.io/kubernetes/examples/volumes/aws_ebs/aws-ebs-web.yaml
generated
vendored
Normal file
21
vendor/k8s.io/kubernetes/examples/volumes/aws_ebs/aws-ebs-web.yaml
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: aws-web
|
||||
spec:
|
||||
containers:
|
||||
- name: web
|
||||
image: nginx
|
||||
ports:
|
||||
- name: web
|
||||
containerPort: 80
|
||||
protocol: tcp
|
||||
volumeMounts:
|
||||
- name: html-volume
|
||||
mountPath: "/usr/share/nginx/html"
|
||||
volumes:
|
||||
- name: html-volume
|
||||
awsElasticBlockStore:
|
||||
# Enter the volume ID below
|
||||
volumeID: volume_ID
|
||||
fsType: ext4
|
||||
Loading…
Add table
Add a link
Reference in a new issue