-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Updated OpenShift example to use the latest chart version
1 parent
75e2e08
commit 3cf30d4
Showing
2 changed files
with
32 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,34 @@ | ||
global: | ||
storageClass: "crc-csi-hostpath-provisioner" | ||
|
||
deployment: | ||
host: graphdb.apps-crc.testing | ||
protocol: https | ||
ingress: | ||
enabled: false | ||
fullnameOverride: graphdb | ||
|
||
graphdb: | ||
clusterConfig: | ||
nodesCount: 3 | ||
# Cluster requires license, you have to provision it before deploying this chart | ||
license: | ||
existingSecret: graphdb-license | ||
|
||
workbench: | ||
subpath: / | ||
replicas: 3 | ||
|
||
node: | ||
# Cluster requires license, you have to provision it before deploying this chart | ||
license: graphdb-license | ||
securityContext: | ||
runAsNonRoot: true | ||
allowPrivilegeEscalation: false | ||
readOnlyRootFilesystem: true | ||
seccompProfile: | ||
type: RuntimeDefault | ||
capabilities: | ||
drop: | ||
- ALL | ||
# Uncomment to disable default resource limits and requests | ||
#resources: | ||
# limits: | ||
# memory: null | ||
# cpu: null | ||
# requests: | ||
# memory: null | ||
# cpu: null | ||
initContainerSecurityContext: | ||
runAsNonRoot: true | ||
allowPrivilegeEscalation: false | ||
readOnlyRootFilesystem: true | ||
seccompProfile: | ||
type: RuntimeDefault | ||
capabilities: | ||
drop: | ||
- ALL | ||
configuration: | ||
externalUrl: https://graphdb.apps-crc.testing | ||
|
||
clusterProxy: | ||
securityContext: | ||
runAsNonRoot: true | ||
allowPrivilegeEscalation: false | ||
readOnlyRootFilesystem: true | ||
seccompProfile: | ||
type: RuntimeDefault | ||
capabilities: | ||
drop: | ||
- ALL | ||
# Uncomment to disable default resource limits and requests | ||
#resources: | ||
# limits: | ||
# memory: null | ||
# cpu: null | ||
# requests: | ||
# memory: null | ||
# cpu: null | ||
ingress: | ||
enabled: false | ||
|
||
jobSecurityContext: | ||
runAsNonRoot: true | ||
allowPrivilegeEscalation: false | ||
readOnlyRootFilesystem: true | ||
seccompProfile: | ||
type: RuntimeDefault | ||
capabilities: | ||
drop: | ||
- ALL | ||
# OpenShift uses very high uid/gid, override the default with 1000660000 | ||
podSecurityContext: | ||
runAsUser: 1000660000 | ||
runAsGroup: 1000660000 | ||
fsGroup: 1000660000 | ||
|
||
jobs: | ||
podSecurityContext: | ||
runAsUser: 1000660000 | ||
runAsGroup: 1000660000 | ||
fsGroup: 1000660000 | ||
|
||
proxy: | ||
fullnameOverride: graphdb-proxy | ||
|
||
podSecurityContext: | ||
runAsUser: 1000660000 | ||
runAsGroup: 1000660000 | ||
fsGroup: 1000660000 |