Add Jenkins, Harbor, Portainer, Vault, ELK, Semaphore manifests
This commit is contained in:
31
apps/portainer/deployment.yaml
Normal file
31
apps/portainer/deployment.yaml
Normal file
@@ -0,0 +1,31 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: portainer
|
||||
namespace: portainer
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: portainer
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: portainer
|
||||
spec:
|
||||
containers:
|
||||
- name: portainer
|
||||
image: portainer/portainer-ce:latest
|
||||
args:
|
||||
- "--http-enabled"
|
||||
- "--http-bind-address=0.0.0.0"
|
||||
ports:
|
||||
- containerPort: 9443
|
||||
- containerPort: 8000
|
||||
volumeMounts:
|
||||
- name: portainer-data
|
||||
mountPath: /data
|
||||
volumes:
|
||||
- name: portainer-data
|
||||
persistentVolumeClaim:
|
||||
claimName: portainer-data
|
||||
Reference in New Issue
Block a user