Kubernetes Operator that creates Service Endpoints from Secrets
1
fork

Configure Feed

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

update rbac rules

+27 -5
+1 -1
Makefile
··· 3 3 # To re-generate a bundle for another specific version without changing the standard setup, you can: 4 4 # - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2) 5 5 # - use environment variables to overwrite this value (e.g export VERSION=0.0.2) 6 - VERSION ?= 0.0.1 6 + VERSION ?= 0.3.0 7 7 8 8 # CHANNELS define the bundle channels used in the bundle. 9 9 # Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
+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.2.1 19 + version: 0.3.0 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.2.1" 25 + appVersion: "0.3.0" 26 26 27 27 maintainers: 28 28 - name: evanjarrett
+12 -2
charts/secret-service-operator/templates/role.yaml
··· 11 11 resources: 12 12 - secrets 13 13 - services 14 - - endpoints 15 14 verbs: 16 15 - create 17 16 - delete ··· 25 24 resources: 26 25 - secrets/status 27 26 - services/status 28 - - endpoints/status 29 27 verbs: 30 28 - get 31 29 - patch 32 30 - update 31 + - apiGroups: 32 + - discovery.k8s.io 33 + resources: 34 + - endpointslices 35 + verbs: 36 + - create 37 + - delete 38 + - get 39 + - list 40 + - patch 41 + - update 42 + - watch 33 43 - apiGroups: 34 44 - apps.j5t.io 35 45 resources:
+12
config/rbac/role.yaml
··· 30 30 - get 31 31 - patch 32 32 - update 33 + - apiGroups: 34 + - discovery.k8s.io 35 + resources: 36 + - endpointslices 37 + verbs: 38 + - create 39 + - delete 40 + - get 41 + - list 42 + - patch 43 + - update 44 + - watch