text stringlengths 0 59.1k |
|---|
type: NodePort |
# if your cluster supports it, uncomment the following to automatically create |
# an external load-balanced IP for the frontend service. |
# type: LoadBalancer |
ports: |
- port: 80 |
selector: |
app: guestbook |
tier: frontend |
<|endoftext|> |
# source: k8s_examples/web/guestbook/redis-replica-deployment.yaml type: yaml |
apiVersion: apps/v1 # for k8s versions before 1.9.0 use apps/v1beta2 and before 1.8.0 use extensions/v1beta1 |
kind: Deployment |
metadata: |
name: redis-replica |
spec: |
selector: |
matchLabels: |
app: redis |
role: replica |
tier: backend |
replicas: 2 |
template: |
metadata: |
labels: |
app: redis |
role: replica |
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 |
<|endoftext|> |
# source: k8s_examples/web/guestbook/frontend-deployment.yaml type: yaml |
apiVersion: apps/v1 # for k8s versions before 1.9.0 use apps/v1beta2 and before 1.8.0 use extensions/v1beta1 |
kind: Deployment |
metadata: |
name: frontend |
spec: |
selector: |
matchLabels: |
app: guestbook |
tier: frontend |
replicas: 3 |
template: |
metadata: |
labels: |
app: guestbook |
tier: frontend |
spec: |
containers: |
- name: php-redis |
image: gcr.io/google-samples/gb-frontend:v5 |
resources: |
requests: |
cpu: 100m |
memory: 100Mi |
limits: |
cpu: 200m |
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 |
readinessProbe: |
httpGet: |
path: / |
port: 80 |
initialDelaySeconds: 5 |
periodSeconds: 10 |
livenessProbe: |
httpGet: |
path: / |
port: 80 |
initialDelaySeconds: 15 |
periodSeconds: 20 |
<|endoftext|> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.