Kubernetes Operator that creates Service Endpoints from Secrets
1
fork

Configure Feed

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

add endpoint to cluster role

+4 -2
+2 -2
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.6 19 + version: 0.1.7 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.6" 25 + appVersion: "0.1.7" 26 26 27 27 maintainers: 28 28 - name: evanjarrett
+2
charts/secret-service-operator/templates/role.yaml
··· 11 11 resources: 12 12 - secrets 13 13 - services 14 + - endpoints 14 15 verbs: 15 16 - create 16 17 - delete ··· 24 25 resources: 25 26 - secrets/status 26 27 - services/status 28 + - endpoints/status 27 29 verbs: 28 30 - get 29 31 - patch