Skip to content

Commit

Permalink
feat: add Helm chart value files for basic installation
Browse files Browse the repository at this point in the history
  • Loading branch information
leonsteinhaeuser committed Nov 18, 2024
1 parent d10a475 commit bdb8fe5
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
29 changes: 29 additions & 0 deletions ocp/deployments/helm/basic/number-service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
replicaCount: 3
image:
repository: ghcr.io/leonsteinhaeuser/rh-ocp-examples-number
pullPolicy: Always
tag: main

serviceAccount:
automount: false

podSecurityContext:
fsGroup: 65535
runAsUser: 65535
runAsGroup: 65535

securityContext:
runAsUser: 65535
runAsGroup: 65535
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true

resources:
limits:
cpu: 100m
memory: 32Mi
requests:
cpu: 10m
memory: 32Mi
33 changes: 33 additions & 0 deletions ocp/deployments/helm/basic/view-service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
replicaCount: 3
image:
repository: ghcr.io/leonsteinhaeuser/rh-ocp-examples-view
pullPolicy: Always
tag: main

serviceAccount:
automount: false

podSecurityContext:
fsGroup: 65535
runAsUser: 65535
runAsGroup: 65535

securityContext:
runAsUser: 65535
runAsGroup: 65535
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true

resources:
limits:
cpu: 100m
memory: 32Mi
requests:
cpu: 10m
memory: 32Mi

route:
enabled: true
host: view-service-helm-basic.localhost

0 comments on commit bdb8fe5

Please sign in to comment.