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 manifest annotations

+10 -4
+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.3.0 6 + VERSION ?= 0.3.1 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")
+9 -3
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.3.0 19 + version: 0.3.1 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.3.0" 25 + appVersion: "0.3.1" 26 26 27 27 maintainers: 28 - - name: evanjarrett 28 + - name: evanjarrett 29 + 30 + annotations: 31 + org.opencontainers.image.source: "https://github.com/evanjarrett/secret-service-operator" 32 + org.opencontainers.image.licenses: "Apache-2.0" 33 + org.opencontainers.image.description: "Create Service Endpoints based on Secrets" 34 + org.opencontainers.image.authors: "Evan Jarrett"