-
Notifications
You must be signed in to change notification settings - Fork 40k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update guestbook example according to config best practices
- Loading branch information
1 parent
13e68d2
commit 2afda9f
Showing
11 changed files
with
716 additions
and
289 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: frontend | ||
labels: | ||
app: guestbook | ||
tier: frontend | ||
spec: | ||
# if your cluster supports it, uncomment the following to automatically create | ||
# an external load-balanced IP for the frontend service. | ||
# type: LoadBalancer | ||
ports: | ||
# the port that this service should serve on | ||
- port: 80 | ||
selector: | ||
app: guestbook | ||
tier: frontend | ||
--- | ||
apiVersion: v1 | ||
kind: ReplicationController | ||
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: | ||
# 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 |
176 changes: 176 additions & 0 deletions
176
examples/guestbook/all-in-one/guestbook-all-in-one.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: redis-master | ||
labels: | ||
app: redis | ||
tier: backend | ||
role: master | ||
spec: | ||
ports: | ||
# the port that this service should serve on | ||
- port: 6379 | ||
targetPort: 6379 | ||
selector: | ||
app: redis | ||
tier: backend | ||
role: master | ||
--- | ||
apiVersion: v1 | ||
kind: ReplicationController | ||
metadata: | ||
name: redis-master | ||
# these labels can be applied automatically | ||
# from the labels in the pod template if not set | ||
labels: | ||
app: redis | ||
role: master | ||
tier: backend | ||
spec: | ||
# this replicas value is default | ||
# modify it according to your case | ||
replicas: 1 | ||
# selector can be applied automatically | ||
# from the labels in the pod template if not set | ||
# selector: | ||
# app: guestbook | ||
# role: master | ||
# tier: backend | ||
template: | ||
metadata: | ||
labels: | ||
app: redis | ||
role: master | ||
tier: backend | ||
spec: | ||
containers: | ||
- name: master | ||
image: redis | ||
resources: | ||
requests: | ||
cpu: 100m | ||
memory: 100Mi | ||
ports: | ||
- containerPort: 6379 | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: redis-slave | ||
labels: | ||
app: redis | ||
tier: backend | ||
role: slave | ||
spec: | ||
ports: | ||
# the port that this service should serve on | ||
- port: 6379 | ||
selector: | ||
app: redis | ||
tier: backend | ||
role: slave | ||
--- | ||
apiVersion: v1 | ||
kind: ReplicationController | ||
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 | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: frontend | ||
labels: | ||
app: guestbook | ||
tier: frontend | ||
spec: | ||
# if your cluster supports it, uncomment the following to automatically create | ||
# an external load-balanced IP for the frontend service. | ||
# type: LoadBalancer | ||
ports: | ||
# the port that this service should serve on | ||
- port: 80 | ||
selector: | ||
app: guestbook | ||
tier: frontend | ||
--- | ||
apiVersion: v1 | ||
kind: ReplicationController | ||
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: | ||
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: redis-slave | ||
labels: | ||
app: redis | ||
role: slave | ||
tier: backend | ||
spec: | ||
ports: | ||
# the port that this service should serve on | ||
- port: 6379 | ||
selector: | ||
app: redis | ||
role: slave | ||
tier: backend | ||
--- | ||
apiVersion: v1 | ||
kind: ReplicationController | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
2afda9f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity OSS :: Kubernetes Mesos :: 4 - Smoke Tests Build 4046 outcome was FAILURE
Summary: Tests failed: 1, passed: 0, ignored: 197 Build time: 00:13:02
Failed tests
2afda9f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity OSS :: Kubernetes Mesos :: 4 - Smoke Tests Build 4047 outcome was FAILURE
Summary: Tests failed: 1, passed: 0, ignored: 197 Build time: 00:12:57
Failed tests