diff --git a/charts/user/CHANGELOG.md b/charts/user/CHANGELOG.md index 6da98eaaa..67eb35c30 100644 --- a/charts/user/CHANGELOG.md +++ b/charts/user/CHANGELOG.md @@ -2,3 +2,7 @@ * support to create user +### 0.1.1 + +* support cron job + diff --git a/charts/user/Chart.yaml b/charts/user/Chart.yaml index 1bc42b37d..dc973b6f7 100644 --- a/charts/user/Chart.yaml +++ b/charts/user/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.0 +version: 0.1.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/user/templates/roles.yaml b/charts/user/templates/roles.yaml index c6685d5f1..db2c75ba0 100644 --- a/charts/user/templates/roles.yaml +++ b/charts/user/templates/roles.yaml @@ -80,6 +80,19 @@ rules: - jobs verbs: - '*' + - apiGroups: + - "apps.kubedl.io" + resources: + - crons + - crons/status + verbs: + - get + - list + - watch + - create + - update + - patch + - delete {{- with .Values.roles }} {{- toYaml . | nindent 2 }} {{- end }}