mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 13:50:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: v1
 | |
| kind: Service
 | |
| metadata:
 | |
|   name: nginxsvc
 | |
|   labels:
 | |
|     app: nginx
 | |
| spec:
 | |
|   type: NodePort
 | |
|   ports:
 | |
|   - port: 80
 | |
|     protocol: TCP
 | |
|     name: http
 | |
|   - port: 443
 | |
|     protocol: TCP
 | |
|     name: https
 | |
|   selector:
 | |
|     app: nginx
 | |
| ---
 | |
| apiVersion: v1
 | |
| kind: ReplicationController
 | |
| metadata:
 | |
|   name: my-nginx
 | |
| spec:
 | |
|   replicas: 1
 | |
|   template:
 | |
|     metadata:
 | |
|       labels:
 | |
|         app: nginx
 | |
|     spec:
 | |
|       volumes:
 | |
|       - name: secret-volume
 | |
|         secret:
 | |
|           secretName: nginxsecret
 | |
|       - name: configmap-volume
 | |
|         configMap:
 | |
|           name: nginxconfigmap
 | |
|       containers:
 | |
|       - name: nginxhttps
 | |
|         image: ymqytw/nginxhttps:1.5
 | |
|         command: ["/home/auto-reload-nginx.sh"]
 | |
|         ports:
 | |
|         - containerPort: 443
 | |
|         - containerPort: 80
 | |
|         livenessProbe:
 | |
|           httpGet:
 | |
|             path: /index.html
 | |
|             port: 80
 | |
|           initialDelaySeconds: 30
 | |
|           timeoutSeconds: 1
 | |
|         volumeMounts:
 | |
|         - mountPath: /etc/nginx/ssl
 | |
|           name: secret-volume
 | |
|         - mountPath: /etc/nginx/conf.d
 | |
|           name: configmap-volume
 |