Skip to content

Commit 0a52318

Browse files
committed
upgrade to using helm3 crd procedure since crd-install hook is no longer supported
fixes #170 chart.Values.crd.install is no longer support since crd MUST be install refer: https://helm.sh/docs/topics/charts/#custom-resource-definitions-crds
1 parent 596c29b commit 0a52318

File tree

5 files changed

+1
-14
lines changed

5 files changed

+1
-14
lines changed

charts/jaeger-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
description: jaeger-operator Helm chart for Kubernetes
33
name: jaeger-operator
4-
version: 2.17.0
4+
version: 2.18.0
55
appVersion: 1.19.0
66
home: https://www.jaegertracing.io/
77
icon: https://www.jaegertracing.io/img/jaeger-icon-reverse-color.svg

charts/jaeger-operator/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ The following table lists the configurable parameters of the jaeger-operator cha
5555
| `image.pullPolicy` | Controller container image pull policy | `IfNotPresent` |
5656
| `jaeger.create` | Jaeger instance will be created | `false` |
5757
| `jaeger.spec` | Jaeger instance specification | `{}` |
58-
| `crd.install` | CustomResourceDefinition will be installed | `true` |
5958
| `rbac.create` | All required roles and rolebindings will be created | `true` |
6059
| `serviceAccount.create` | Service account to use | `true` |
6160
| `rbac.pspEnabled` | Pod security policy for pod will be created and included in rbac role | `false` |

charts/jaeger-operator/crds/crd.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ apiVersion: apiextensions.k8s.io/v1beta1
22
kind: CustomResourceDefinition
33
metadata:
44
name: jaegers.jaegertracing.io
5-
annotations:
6-
"helm.sh/hook": crd-install
7-
"helm.sh/hook-delete-policy": "before-hook-creation"
85
labels:
96
app: jaeger-operator
107
spec:

charts/jaeger-operator/templates/crds.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

charts/jaeger-operator/values.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ image:
77
pullPolicy: IfNotPresent
88
imagePullSecrets: []
99

10-
crd:
11-
install: true
12-
1310
jaeger:
1411
# Specifies whether Jaeger instance should be created
1512
create: false

0 commit comments

Comments
 (0)