Skip to content

Commit

Permalink
Update SshServer001 deployment to use secrets for user credentials an…
Browse files Browse the repository at this point in the history
…d adjust resource requests
  • Loading branch information
EliasDeHondt committed Dec 30, 2024
1 parent 6d9de9e commit 7ed4114
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Supercluster/Cluster01/SshServer001/Deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ spec:
- name: TZ
value: "Europe/Brussels"
- name: USER_NAME
value: "user"
valueFrom:
secretKeyRef:
name: sshserver001-secret
key: user
- name: USER_PASSWORD
valueFrom:
secretKeyRef:
Expand All @@ -46,9 +49,9 @@ spec:
value: "true"
resources:
limits:
memory: "256Mi"
cpu: "500m"
requests:
memory: "128Mi"
cpu: "250m"
requests:
memory: "64Mi"
cpu: "100m"
---

0 comments on commit 7ed4114

Please sign in to comment.