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 gha

+6 -1
+3
.github/workflows/docker-build.yml
··· 4 4 push: 5 5 branches: 6 6 - main 7 + paths-ignore: 8 + - "deploy/**" 9 + - ".github/**" 7 10 pull_request: 8 11 branches: 9 12 - main
+3 -1
.github/workflows/helm-release.yml
··· 4 4 push: 5 5 branches: 6 6 - "main" 7 + paths: 8 + - "deploy/**" 7 9 workflow_dispatch: 8 10 9 11 jobs: ··· 31 33 - name: Package Helm chart 32 34 id: helm_package 33 35 run: | 34 - helm package deploy/charts/secret-service-operator 36 + helm package src/deploy/charts/secret-service-operator 35 37 PKG_NAME=$(ls secret-service-operator*.tgz) 36 38 echo "name=$PKG_NAME" >> "$GITHUB_OUTPUT" 37 39