Fresh dep ensure

This commit is contained in:
Mike Cronce
2018-11-26 13:23:56 -05:00
parent 93cb8a04d7
commit 407478ab9a
9016 changed files with 551394 additions and 279685 deletions

View File

@ -11,7 +11,7 @@ spec:
- /bin/sh
- -c
- /usr/local/bin/kube-apiserver --address=127.0.0.1 --etcd-servers=http://127.0.0.1:4001
--cloud-provider=gce --admission-control=Initializers,NamespaceLifecycle,LimitRanger,SecurityContextDeny,ServiceAccount,ResourceQuota
--cloud-provider=gce --admission-control=NamespaceLifecycle,LimitRanger,SecurityContextDeny,ServiceAccount,ResourceQuota
--service-cluster-ip-range=10.0.0.0/16 --client-ca-file=/srv/kubernetes/ca.crt
--basic-auth-file=/srv/kubernetes/basic_auth.csv --cluster-name=e2e-test-bburns
--tls-cert-file=/srv/kubernetes/server.cert --tls-private-key-file=/srv/kubernetes/server.key

View File

@ -5,7 +5,7 @@ metadata:
spec:
containers:
- name: test-container
image: k8s.gcr.io/busybox
image: busybox
command: [ "/bin/sh", "-c", "env" ]
env:
- name: MY_POD_NAME

View File

@ -10,7 +10,7 @@ spec:
- /bin/sh
- -c
- echo ok > /tmp/health; sleep 10; rm -rf /tmp/health; sleep 600
image: k8s.gcr.io/busybox
image: busybox
livenessProbe:
exec:
command:

View File

@ -8,7 +8,7 @@ spec:
containers:
- args:
- /server
image: k8s.gcr.io/liveness
image: gcr.io/kubernetes-e2e-test-images/liveness:1.0
livenessProbe:
httpGet:
path: /healthz

View File

@ -10,7 +10,7 @@ metadata:
spec:
containers:
- name: master
image: kubernetes/redis:v1
image: gcr.io/kubernetes-e2e-test-images/redis:1.0
env:
- name: MASTER
value: "true"
@ -23,7 +23,7 @@ spec:
- mountPath: /redis-master-data
name: data
- name: sentinel
image: kubernetes/redis:v1
image: gcr.io/kubernetes-e2e-test-images/redis:1.0
env:
- name: SENTINEL
value: "true"
@ -42,7 +42,7 @@ metadata:
spec:
containers:
- name: kubernetes-serve-hostname
image: k8s.gcr.io/serve_hostname
image: gcr.io/kubernetes-e2e-test-images/serve-hostname:1.0
resources:
limits:
cpu: "1"

View File

@ -0,0 +1,12 @@
apiVersion: v1
kind: Pod
metadata:
name: nginx
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80

View File

@ -27,7 +27,7 @@ spec:
spec:
containers:
- name: slave
image: gcr.io/google_samples/gb-redisslave:v1
image: gcr.io/google-samples/gb-redisslave:v3
resources:
requests:
cpu: 100m

View File

@ -5,7 +5,7 @@ metadata:
spec:
containers:
- name: test-container
image: k8s.gcr.io/busybox
image: busybox
command: [ "/bin/sh", "-c", "env" ]
env:
- name: MY_SECRET_DATA

View File

@ -5,7 +5,7 @@ metadata:
spec:
containers:
- name: test-container
image: k8s.gcr.io/mounttest:0.8
image: gcr.io/kubernetes-e2e-test-images/mounttest:1.0
command: [ "/mt", "--file_content=/etc/secret-volume/data-1" ]
volumeMounts:
# name must match the volume name below

View File

@ -14,7 +14,7 @@
"spec": {
"containers": [{
"name": "nginx",
"image": "dockerfile/nginx",
"image": "nginx",
"ports": [{"containerPort": 80}]
}]
}

View File

@ -1,20 +0,0 @@
apiVersion: v1
kind: ReplicationController
metadata:
name: update-demo-kitten
spec:
selector:
name: update-demo
version: kitten
template:
metadata:
labels:
name: update-demo
version: kitten
spec:
containers:
- image: k8s.gcr.io/update-demo:kitten
name: update-demo
ports:
- containerPort: 80
protocol: TCP

View File

@ -3,13 +3,13 @@ items:
- kind: ConfigMap
apiVersion: v1
metadata:
name: test
name: test0
data:
key1: apple
- kind: ConfigMap
apiVersion: v1
metadata:
name: test2
name: test1
data:
key2: apple
kind: ConfigMapList

View File

@ -4,7 +4,7 @@ metadata:
annotations:
deployment.kubernetes.io/revision: "1"
kubectl.kubernetes.io/last-applied-configuration: '{"kind":"Deployment","apiVersion":"extensions/v1beta1","metadata":{"name":"nginx-deployment","creationTimestamp":null},"spec":{"template":{"metadata":{"creationTimestamp":null,"labels":{"name":"nginx"}},"spec":{"containers":[{"name":"nginx","image":"nginx","resources":{}}]}},"strategy":{}},"status":{}}'
creationTimestamp: 2016-10-24T22:15:06Z
creationTimestamp: "2016-10-24T22:15:06Z"
generation: 6
labels:
name: nginx

View File

@ -30,7 +30,7 @@ items:
spec:
containers:
- name: kubernetes-serve-hostname
image: k8s.gcr.io/serve_hostname
image: gcr.io/kubernetes-e2e-test-images/serve-hostname:1.1
resources:
limits:
cpu: "1"

View File

@ -0,0 +1,25 @@
apiVersion: v1
items:
- apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRole
metadata:
labels:
test-cmd: auth
name: testing-CR
rules:
- apiGroups:
- ""
resources:
- pods
verbs:
- create
- delete
- deletecollection
- get
- list
- patch
- update
- watch
kind: List
metadata: {}

View File

@ -0,0 +1,18 @@
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: expose-test-deployment
labels:
name: expose-test-deployment
spec:
replicas: 3
template:
metadata:
labels:
name: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80

View File

@ -0,0 +1,21 @@
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: expose-test-deployment
labels:
name: expose-test-deployment
spec:
replicas: 3
selector:
matchLabels:
name: nginx
template:
metadata:
labels:
name: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80

View File

@ -0,0 +1,18 @@
apiVersion: apps/v1beta2
kind: Deployment
metadata:
name: expose-test-deployment
labels:
name: expose-test-deployment
spec:
replicas: 3
template:
metadata:
labels:
name: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80

View File

@ -0,0 +1,21 @@
apiVersion: apps/v1beta2
kind: Deployment
metadata:
name: expose-test-deployment
labels:
name: expose-test-deployment
spec:
replicas: 3
selector:
matchLabels:
name: nginx
template:
metadata:
labels:
name: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80

View File

@ -0,0 +1,18 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: expose-test-deployment
labels:
name: expose-test-deployment
spec:
replicas: 3
template:
metadata:
labels:
name: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80

View File

@ -0,0 +1,21 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: expose-test-deployment
labels:
name: expose-test-deployment
spec:
replicas: 3
selector:
matchLabels:
name: nginx
template:
metadata:
labels:
name: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80

View File

@ -13,7 +13,7 @@ spec:
spec:
containers:
- name: mock-container
image: k8s.gcr.io/pause:2.0
image: k8s.gcr.io/pause:3.1
---
apiVersion: v1
kind: ReplicationController
@ -30,4 +30,4 @@ spec:
spec:
containers:
- name: mock-container
image: k8s.gcr.io/pause:2.0
image: k8s.gcr.io/pause:3.1

View File

@ -1,4 +0,0 @@
name: "echo"
shortDesc: "Echoes for test-cmd"
longDesc: "Long description for the test-cmd echo plugin"
command: "echo This plugin works!"

View File

@ -1,17 +0,0 @@
#!/usr/bin/env bash
# Copyright 2017 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
env | grep 'KUBECTL_PLUGINS' | sort

View File

@ -1,12 +0,0 @@
name: env
shortDesc: "The plugin envs plugin"
command: "./env.sh"
flags:
- name: "test1"
desc: "This is a flag 1"
- name: "test2"
desc: "This is a flag 2"
shorthand: "t"
- name: "test3"
desc: "This is a flag 3"
defValue: "default"

View File

@ -1,3 +0,0 @@
name: "error"
shortDesc: "The tremendous plugin that always fails!"
command: "false"

View File

@ -0,0 +1,3 @@
#!/bin/bash
echo "I am plugin foo"

View File

@ -1,3 +0,0 @@
name: "get"
shortDesc: "The wonderful new plugin-based get!"
command: "echo new-get"

View File

@ -1,2 +0,0 @@
name: "incomplete"
shortDesc: "Incomplete plugin"

View File

@ -0,0 +1,3 @@
#!/bin/bash
echo "I am plugin foo"

View File

@ -1,13 +0,0 @@
name: "tree"
shortDesc: "Plugin with a tree of commands"
tree:
- name: "child1"
shortDesc: "The first child of a tree"
command: echo child one
- name: "child2"
shortDesc: "The second child of a tree"
command: echo child two
- name: "child3"
shortDesc: "The third child of a tree"
command: echo child three

View File

@ -0,0 +1,4 @@
#!/bin/bash
# This plugin is a no-op and is used to test
# a plugin that overshadows an existing plugin

View File

@ -1,19 +0,0 @@
#!/usr/bin/env bash
# Copyright 2017 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
echo "#######"
echo "#hello#"
echo "#######"

View File

@ -1,7 +0,0 @@
name: hello
shortDesc: "The hello plugin"
longDesc: >
The hello plugin is a new
plugin used by test-cmd
to test multiple plugin locations.
command: ./hello.sh