Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
9c011c6e
Commit
9c011c6e
authored
Mar 10, 2016
by
Madhusudan.C.S
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Copy replicaset example yamls to hack/testdata directory.
parent
31903c8b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
91 additions
and
7 deletions
+91
-7
test-cmd.sh
hack/test-cmd.sh
+5
-7
frontend-replicaset.yaml
hack/testdata/frontend-replicaset.yaml
+42
-0
redis-slave-replicaset.yaml
hack/testdata/redis-slave-replicaset.yaml
+44
-0
No files found.
hack/test-cmd.sh
View file @
9c011c6e
...
@@ -1289,7 +1289,7 @@ __EOF__
...
@@ -1289,7 +1289,7 @@ __EOF__
# Pre-condition: no replica set exists
# Pre-condition: no replica set exists
kube::test::get_object_assert rs
"{{range.items}}{{
$id_field
}}:{{end}}"
''
kube::test::get_object_assert rs
"{{range.items}}{{
$id_field
}}:{{end}}"
''
# Command
# Command
kubectl create
-f
docs/user-guide/replicaset/frontend
.yaml
"
${
kube_flags
[@]
}
"
kubectl create
-f
hack/testdata/frontend-replicaset
.yaml
"
${
kube_flags
[@]
}
"
kubectl delete rs frontend
"
${
kube_flags
[@]
}
"
kubectl delete rs frontend
"
${
kube_flags
[@]
}
"
# Post-condition: no pods from frontend replica set
# Post-condition: no pods from frontend replica set
kube::test::get_object_assert
'pods -l "tier=frontend"'
"{{range.items}}{{
$id_field
}}:{{end}}"
''
kube::test::get_object_assert
'pods -l "tier=frontend"'
"{{range.items}}{{
$id_field
}}:{{end}}"
''
...
@@ -1298,7 +1298,7 @@ __EOF__
...
@@ -1298,7 +1298,7 @@ __EOF__
# Pre-condition: no replica set exists
# Pre-condition: no replica set exists
kube::test::get_object_assert rs
"{{range.items}}{{
$id_field
}}:{{end}}"
''
kube::test::get_object_assert rs
"{{range.items}}{{
$id_field
}}:{{end}}"
''
# Command
# Command
kubectl create
-f
docs/user-guide/replicaset/frontend
.yaml
"
${
kube_flags
[@]
}
"
kubectl create
-f
hack/testdata/frontend-replicaset
.yaml
"
${
kube_flags
[@]
}
"
# Post-condition: frontend replica set is created
# Post-condition: frontend replica set is created
kube::test::get_object_assert rs
"{{range.items}}{{
$id_field
}}:{{end}}"
'frontend:'
kube::test::get_object_assert rs
"{{range.items}}{{
$id_field
}}:{{end}}"
'frontend:'
...
@@ -1314,10 +1314,8 @@ __EOF__
...
@@ -1314,10 +1314,8 @@ __EOF__
# Clean-up
# Clean-up
kubectl delete rs frontend
"
${
kube_flags
[@]
}
"
kubectl delete rs frontend
"
${
kube_flags
[@]
}
"
# TODO(madhusudancs): Fix this when Scale group issues are resolved (see issue #18528).
### Expose replica set as service
### Expose replica set as service
kubectl create
-f
docs/user-guide/replicaset/frontend
.yaml
"
${
kube_flags
[@]
}
"
kubectl create
-f
hack/testdata/frontend-replicaset
.yaml
"
${
kube_flags
[@]
}
"
# Pre-condition: 3 replicas
# Pre-condition: 3 replicas
kube::test::get_object_assert
'rs frontend'
"{{
$rs_replicas_field
}}"
'3'
kube::test::get_object_assert
'rs frontend'
"{{
$rs_replicas_field
}}"
'3'
# Command
# Command
...
@@ -1343,8 +1341,8 @@ __EOF__
...
@@ -1343,8 +1341,8 @@ __EOF__
# Pre-condition: no replica set exists
# Pre-condition: no replica set exists
kube::test::get_object_assert rs
"{{range.items}}{{
$id_field
}}:{{end}}"
''
kube::test::get_object_assert rs
"{{range.items}}{{
$id_field
}}:{{end}}"
''
# Command
# Command
kubectl create
-f
docs/user-guide/replicaset/frontend
.yaml
"
${
kube_flags
[@]
}
"
kubectl create
-f
hack/testdata/frontend-replicaset
.yaml
"
${
kube_flags
[@]
}
"
kubectl create
-f
docs/user-guide/replicaset/redis-slave
.yaml
"
${
kube_flags
[@]
}
"
kubectl create
-f
hack/testdata/redis-slave-replicaset
.yaml
"
${
kube_flags
[@]
}
"
# Post-condition: frontend and redis-slave
# Post-condition: frontend and redis-slave
kube::test::get_object_assert rs
"{{range.items}}{{
$id_field
}}:{{end}}"
'frontend:redis-slave:'
kube::test::get_object_assert rs
"{{range.items}}{{
$id_field
}}:{{end}}"
'frontend:redis-slave:'
...
...
hack/testdata/frontend-replicaset.yaml
0 → 100644
View file @
9c011c6e
apiVersion
:
extensions/v1beta1
kind
:
ReplicaSet
metadata
:
name
:
frontend
# these labels can be applied automatically
# from the labels in the pod template if not set
# labels:
# app: guestbook
# tier: frontend
spec
:
# this replicas value is default
# modify it according to your case
replicas
:
3
# selector can be applied automatically
# from the labels in the pod template if not set
# selector:
# matchLabels:
# app: guestbook
# tier: frontend
template
:
metadata
:
labels
:
app
:
guestbook
tier
:
frontend
spec
:
containers
:
-
name
:
php-redis
image
:
gcr.io/google_samples/gb-frontend:v3
resources
:
requests
:
cpu
:
100m
memory
:
100Mi
env
:
-
name
:
GET_HOSTS_FROM
value
:
dns
# If your cluster config does not include a dns service, then to
# instead access environment variables to find service host
# info, comment out the 'value: dns' line above, and uncomment the
# line below.
# value: env
ports
:
-
containerPort
:
80
hack/testdata/redis-slave-replicaset.yaml
0 → 100644
View file @
9c011c6e
apiVersion
:
extensions/v1beta1
kind
:
ReplicaSet
metadata
:
name
:
redis-slave
# these labels can be applied automatically
# from the labels in the pod template if not set
# labels:
# app: redis
# role: slave
# tier: backend
spec
:
# this replicas value is default
# modify it according to your case
replicas
:
2
# selector can be applied automatically
# from the labels in the pod template if not set
# selector:
# app: guestbook
# role: slave
# tier: backend
template
:
metadata
:
labels
:
app
:
redis
role
:
slave
tier
:
backend
spec
:
containers
:
-
name
:
slave
image
:
gcr.io/google_samples/gb-redisslave:v1
resources
:
requests
:
cpu
:
100m
memory
:
100Mi
env
:
-
name
:
GET_HOSTS_FROM
value
:
dns
# If your cluster config does not include a dns service, then to
# instead access an environment variable to find the master
# service's host, comment out the 'value: dns' line above, and
# uncomment the line below.
# value: env
ports
:
-
containerPort
:
6379
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment