lint: yaml spaces and tabs

This commit is contained in:
2026-06-09 12:59:36 +02:00
parent 01ae2dd5cf
commit 7a3708f70c
30 changed files with 501 additions and 504 deletions
+15 -15
View File
@@ -7,11 +7,11 @@ spec:
entryPoints:
- websecure
routes:
- match: Host(`portainer.forust.xyz`)
kind: Rule
services:
- name: portainer-service
port: 9000
- match: Host(`portainer.forust.xyz`)
kind: Rule
services:
- name: portainer-service
port: 9000
tls:
certResolver: letsencrypt
---
@@ -24,11 +24,11 @@ spec:
entryPoints:
- websecure
routes:
- match: Host(`portainer.workstation.internal`)
kind: Rule
services:
- name: portainer-service
port: 9000
- match: Host(`portainer.workstation.internal`)
kind: Rule
services:
- name: portainer-service
port: 9000
tls:
secretName: local-tls
---
@@ -41,10 +41,10 @@ spec:
entryPoints:
- websecure
routes:
- match: Host(`portainer.gigaforust.internal`)
kind: Rule
services:
- name: portainer-service
port: 9000
- match: Host(`portainer.gigaforust.internal`)
kind: Rule
services:
- name: portainer-service
port: 9000
tls:
secretName: local-tls
+19 -19
View File
@@ -7,8 +7,8 @@ spec:
selector:
app: portainer
ports:
- port: 9000
targetPort: 9000
- port: 9000
targetPort: 9000
---
apiVersion: apps/v1
kind: Deployment
@@ -26,23 +26,23 @@ spec:
app: portainer
spec:
containers:
- name: portainer
image: portainer/portainer-ce:2.41.0
ports:
- containerPort: 9000
volumeMounts:
- name: data
mountPath: /data
- name: docker-sock
mountPath: /var/run/docker.sock
- name: portainer
image: portainer/portainer-ce:2.41.0
ports:
- containerPort: 9000
volumeMounts:
- name: data
mountPath: /data
- name: docker-sock
mountPath: /var/run/docker.sock
volumes:
- name: data
persistentVolumeClaim:
claimName: portainer-data-pvc
- name: docker-sock
hostPath:
path: /var/run/docker.sock
type: Socket
- name: data
persistentVolumeClaim:
claimName: portainer-data-pvc
- name: docker-sock
hostPath:
path: /var/run/docker.sock
type: Socket
---
apiVersion: v1
kind: PersistentVolumeClaim
@@ -51,7 +51,7 @@ metadata:
namespace: portainer
spec:
accessModes:
- ReadWriteOnce
- ReadWriteOnce
resources:
requests:
storage: 2Gi