-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from projectsyn/ocp4
Add guide how to install on OCP4
- Loading branch information
Showing
3 changed files
with
55 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
= Installing on OpenShift 4 | ||
|
||
This guide describes how to install this component on OpenShift 4. | ||
|
||
== Parameters for Keycloak | ||
|
||
You need to disable some security context fields, as OpenShift sets those automatically. | ||
|
||
[source,yaml,subs="attributes+"] | ||
---- | ||
parameters: | ||
keycloak: | ||
ingress: | ||
servicePort: http <1> | ||
helm_values: | ||
podSecurityContext: null | ||
securityContext: null | ||
pgchecker: | ||
securityContext: null | ||
---- | ||
<1> It's not possible to use the `reencrypt` termination if using Ingress with a self-signed destination certificate. | ||
|
||
== Parameters for built-in Postgresql database | ||
|
||
If you are using the built-in database provider (by default unless `keycloak.database.provider` is overridden) you also need to adjust the following parameters. | ||
|
||
[source,yaml,subs="attributes+"] | ||
---- | ||
parameters: | ||
keycloak: | ||
helm_values: | ||
postgresql: | ||
securityContext: | ||
enabled: false | ||
volumePermissions: | ||
securityContext: | ||
runAsUser: auto | ||
shmVolume: | ||
chmod: | ||
enabled: false | ||
---- |
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