33 lines
		
	
	
		
			612 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			612 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: apps/v1
 | 
						|
kind: Deployment
 | 
						|
metadata:
 | 
						|
  name: ntfy
 | 
						|
spec:
 | 
						|
  selector:
 | 
						|
    matchLabels:
 | 
						|
      app: ntfy
 | 
						|
  template:
 | 
						|
    metadata:
 | 
						|
      labels:
 | 
						|
        app: ntfy
 | 
						|
    spec:
 | 
						|
      containers:
 | 
						|
      - name: ntfy
 | 
						|
        image: binwiederhier/ntfy
 | 
						|
        args: ["serve"]
 | 
						|
        resources:
 | 
						|
          limits:
 | 
						|
            memory: "128Mi"
 | 
						|
            cpu: "500m"
 | 
						|
        ports:
 | 
						|
        - containerPort: 80
 | 
						|
          name: http
 | 
						|
        volumeMounts:
 | 
						|
        - name: config
 | 
						|
          mountPath: "/etc/ntfy"
 | 
						|
          readOnly: true
 | 
						|
      volumes:
 | 
						|
        - name: config
 | 
						|
          configMap:
 | 
						|
            name: ntfy
 |