mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 22:01:06 +00:00 
			
		
		
		
	The comments removed in this patch are either inaccurate or does not serve any purpose as they're already applies as uncommented in the tutorial and explained in the walkthrough text. Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			744 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			744 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: v1
 | |
| kind: ReplicationController
 | |
| metadata:
 | |
|   name: frontend
 | |
| spec:
 | |
|   replicas: 3
 | |
|   template:
 | |
|     metadata:
 | |
|       labels:
 | |
|         app: guestbook
 | |
|         tier: frontend
 | |
|     spec:
 | |
|       containers:
 | |
|       - name: php-redis
 | |
|         image: gcr.io/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
 |