Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Jaeger operator role resources #11596

Merged
merged 3 commits into from
Feb 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stable/jaeger-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
description: jaeger-operator Helm chart for Kubernetes
name: jaeger-operator
version: 2.2.0
version: 2.2.1
appVersion: 1.9.0
home: https://www.jaegertracing.io/
icon: https://www.jaegertracing.io/img/jaeger-icon-reverse-color.svg
Expand Down
15 changes: 8 additions & 7 deletions stable/jaeger-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,18 @@ The following table lists the configurable parameters of the jaeger-operator cha

Parameter | Description | Default
--- | --- | ---
`image.repository` | controller container image repository | `jaegertracing/jaeger-operator`
`image.tag` | controller container image tag | `1.9.0`
`image.pullPolicy` | controller container image pull policy | `IfNotPresent`
`rbac.create` | all required roles and SA will be created | `true`
`resources` | k8s pod resorces | `None`
`image.repository` | Controller container image repository | `jaegertracing/jaeger-operator`
`image.tag` | Controller container image tag | `1.9.0`
`image.pullPolicy` | Controller container image pull policy | `IfNotPresent`
`rbac.create` | All required roles and rolebindings will be created | `true`
`serviceAccount.create` | Service account to use | `true`
`serviceAccount.name` | Service account name to use. If not set and create is true, a name is generated using the fullname template | ``
`resources` | K8s pod resorces | `None`
`nodeSelector` | Node labels for pod assignment | `{}`
`tolerations` | Toleration labels for pod assignment | `[]`
`affinity` | Affinity settings for pod assignment | `{}`


Specify each parameter you'd like to override using a YAML file as described above in the [installation](#Installing the Chart) section.
Specify each parameter you'd like to override using a YAML file as described above in the [installation](#installing-the-chart) section.

You can also specify any non-array parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,

Expand Down
6 changes: 6 additions & 0 deletions stable/jaeger-operator/templates/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,10 @@ rules:
- ingresses
verbs:
- "*"
- apiGroups:
- batch
resources:
- jobs
- cronjobs
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
{{- end }}