1234567891011121314151617181920212223242526272829 |
- apiVersion: v1
- kind: ReplicationController
- metadata:
- name: frontend
- spec:
- replicas: 3
- template:
- metadata:
- labels:
- app: guestbook
- tier: frontend
- spec:
- containers:
- - name: php-redis
- image: anjia0532/google-samples.gb-frontend:v4
- 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
|