-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for OpenShift 3.9; now using unprivileged container to …
…deploy; added MiniShift support (#23) Added support for OpenShift 3.9; now using unprivileged container to deploy; added MiniShift support
- Loading branch information
1 parent
6b29400
commit af5db48
Showing
8 changed files
with
263 additions
and
121 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
This product includes software originally developed by Solace Inc. | ||
Copyright 2018 Solace Inc. | ||
This product includes software originally developed by Solace Corporation. | ||
Copyright 2018 Solace Corporation |
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
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,42 @@ | ||
kind: SecurityContextConstraints | ||
apiVersion: v1 | ||
metadata: | ||
name: scc-solace-in-unprivileged-container | ||
allowPrivilegedContainer: false | ||
allowedCapabilities: | ||
- IPC_LOCK | ||
- SYS_NICE | ||
- SETPCAP | ||
- MKNOD | ||
- AUDIT_WRITE | ||
- CHOWN | ||
- NET_RAW | ||
- DAC_OVERRIDE | ||
- FOWNER | ||
- FSETID | ||
- KILL | ||
- SETGID | ||
- SETUID | ||
- NET_BIND_SERVICE | ||
- SYS_CHROOT | ||
- SETFCAP | ||
allowHostIPC: true | ||
defaultCapabilities: | ||
- IPC_LOCK | ||
- SYS_NICE | ||
runAsUser: | ||
type: MustRunAsRange | ||
seLinuxContext: | ||
type: RunAsAny | ||
fsGroup: | ||
type: MustRunAs | ||
ranges: | ||
- min: 501 | ||
max: 501 | ||
supplementalGroups: | ||
type: RunAsAny | ||
users: | ||
- my-admin-user | ||
groups: | ||
- my-admin-group | ||
|
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
Oops, something went wrong.