mirror of
				https://github.com/prometheus-operator/kube-prometheus.git
				synced 2025-11-04 01:51:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			632 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			632 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
kind: Service
 | 
						|
apiVersion: v1
 | 
						|
metadata:
 | 
						|
  name: example-app
 | 
						|
  labels:
 | 
						|
    tier: frontend
 | 
						|
  namespace: default
 | 
						|
spec:
 | 
						|
  selector:
 | 
						|
    app: example-app
 | 
						|
  ports:
 | 
						|
  - name: web
 | 
						|
    protocol: TCP
 | 
						|
    port: 8080
 | 
						|
    targetPort: web
 | 
						|
---
 | 
						|
apiVersion: extensions/v1beta1
 | 
						|
kind: Deployment
 | 
						|
metadata:
 | 
						|
  name: example-app
 | 
						|
  namespace: default
 | 
						|
spec:
 | 
						|
  replicas: 4
 | 
						|
  template:
 | 
						|
    metadata:
 | 
						|
      labels:
 | 
						|
        app: example-app
 | 
						|
        version: 1.1.3
 | 
						|
    spec:
 | 
						|
      containers:
 | 
						|
      - name: example-app 
 | 
						|
        image: quay.io/fabxc/prometheus_demo_service
 | 
						|
        ports:
 | 
						|
        - name: web
 | 
						|
          containerPort: 8080
 | 
						|
          protocol: TCP
 |