-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added instructions for daemonsets on OpenShift (#346)
* Added instructions for DaemonSets on OpenShift Closes #459 Signed-off-by: Juraci Paixão Kröhling <[email protected]> * Moved new examples to OpenShift directory Signed-off-by: Juraci Paixão Kröhling <[email protected]> * Fixed path to the new files in the readme Signed-off-by: Juraci Paixão Kröhling <[email protected]>
- Loading branch information
1 parent
eaa4d52
commit 04429a0
Showing
4 changed files
with
52 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
apiVersion: jaegertracing.io/v1 | ||
kind: Jaeger | ||
metadata: | ||
name: agent-as-daemonset | ||
spec: | ||
agent: | ||
strategy: DaemonSet | ||
serviceAccount: jaeger-agent-daemonset | ||
options: | ||
log-level: debug |
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,11 @@ | ||
kind: SecurityContextConstraints | ||
apiVersion: security.openshift.io/v1 | ||
metadata: | ||
name: daemonset-with-hostport | ||
annotations: | ||
kubernetes.io/description: 'Allows DaemonSets to bind to a well-known host port' | ||
runAsUser: | ||
type: RunAsAny | ||
seLinuxContext: | ||
type: RunAsAny | ||
allowHostPorts: true |
4 changes: 4 additions & 0 deletions
4
deploy/examples/openshift/service_account_jaeger-agent-daemonset.yaml
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,4 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: jaeger-agent-daemonset |