This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. Reviewed-on: #2634 Co-authored-by: gitea-bot <gitea-bot@alexlebens.net> Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: libation-debug
|
|
labels:
|
|
app.kubernetes.io/controller: debug
|
|
app.kubernetes.io/instance: libation
|
|
app.kubernetes.io/managed-by: Helm
|
|
app.kubernetes.io/name: libation
|
|
helm.sh/chart: libation-4.5.0
|
|
namespace: libation
|
|
spec:
|
|
revisionHistoryLimit: 3
|
|
replicas: 1
|
|
strategy:
|
|
type: Recreate
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/controller: debug
|
|
app.kubernetes.io/name: libation
|
|
app.kubernetes.io/instance: libation
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/controller: debug
|
|
app.kubernetes.io/instance: libation
|
|
app.kubernetes.io/name: libation
|
|
spec:
|
|
enableServiceLinks: false
|
|
serviceAccountName: default
|
|
automountServiceAccountToken: true
|
|
hostIPC: false
|
|
hostNetwork: false
|
|
hostPID: false
|
|
dnsPolicy: ClusterFirst
|
|
containers:
|
|
- command:
|
|
- sleep
|
|
- infinity
|
|
image: ubuntu:resolute-20251130
|
|
imagePullPolicy: IfNotPresent
|
|
name: main
|
|
resources:
|
|
requests:
|
|
cpu: 10m
|
|
memory: 32Mi
|
|
volumeMounts:
|
|
- mountPath: /config
|
|
name: config-new
|
|
volumes:
|
|
- name: config-new
|
|
persistentVolumeClaim:
|
|
claimName: libation
|