Kubernetes Operator that creates Service Endpoints from Secrets
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix rolebinding

+20 -2
+2 -2
deploy/charts/secret-service-operator/Chart.yaml
··· 16 16 # This is the chart version. This version number should be incremented each time you make changes 17 17 # to the chart and its templates, including the app version. 18 18 # Versions are expected to follow Semantic Versioning (https://semver.org/) 19 - version: 0.1.3 19 + version: 0.1.4 20 20 21 21 # This is the version number of the application being deployed. This version number should be 22 22 # incremented each time you make changes to the application. Versions are not expected to 23 23 # follow Semantic Versioning. They should reflect the version the application is using. 24 24 # It is recommended to use it with quotes. 25 - appVersion: "0.1.3" 25 + appVersion: "0.1.4" 26 26 27 27 maintainers: 28 28 - name: evanjarrett
+18
deploy/charts/secret-service-operator/templates/role.yaml
··· 7 7 {{- include "secret-service-operator.labels" . | nindent 4 }} 8 8 rules: 9 9 - apiGroups: 10 + - "" 11 + resources: 12 + - secrets 13 + verbs: 14 + - create 15 + - delete 16 + - get 17 + - list 18 + - patch 19 + - update 20 + - watch 21 + - apiGroups: 22 + - "" 23 + resources: 24 + - secrets/status 25 + verbs: 26 + - get 27 + - apiGroups: 10 28 - apps.j5t.io 11 29 resources: 12 30 - secretservices