Skip to content

Commit

Permalink
rollback
Browse files Browse the repository at this point in the history
Signed-off-by: Javan lacerda <[email protected]>
  • Loading branch information
javanlacerda committed Jul 10, 2024
1 parent f26ebac commit f39323c
Showing 1 changed file with 24 additions and 12 deletions.
36 changes: 24 additions & 12 deletions .github/workflows/verify-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,31 @@ jobs:
- name: Install kubeval
run: go install github.com/instrumenta/[email protected]

- name: Run kubeval for deployment
run: kubeval config/*.yaml
- run: kubeval config/*.yaml

verify-k8s-deployment:
runs-on: ubuntu-latest
strategy:
fail-fast: false # Keep running if one leg fails.

matrix:
issuer:
- "OIDC Issuer"
- "Meta Issuer"

include:
- issuer: "OIDC Issuer"
issuer-config: |
oidc-issuers:
https://kubernetes.default.svc:
issuer-url: https://kubernetes.default.svc
client-id: sigstore
type: kubernetes
- issuer: "Meta Issuer"
issuer-config: |
meta-issuers:
https://kubernetes.*.svc:
client-id: sigstore
type: kubernetes
env:
# https://github.com/google/go-containerregistry/pull/125 allows insecure registry for
# '*.local' hostnames. This works both for `ko` and our own tag-to-digest resolution logic,
Expand Down Expand Up @@ -104,6 +121,7 @@ jobs:
port: 2112
targetPort: 2112
EOF
# Overwrite the configuration to be what we need for KinD.
cat <<EOF > config/fulcio-config.yaml
apiVersion: v1
Expand All @@ -113,15 +131,9 @@ jobs:
namespace: fulcio-system
data:
config.yaml: |-
oidc-issuers:
https://kubernetes.default.svc:
issuer-url: https://kubernetes.default.svc
client-id: sigstore
type: kubernetes
meta-issuers:
https://kubernetes.*.svc:
client-id: sigstore
type: kubernetes
{
${{ matrix.issuer-config }}
}
server.yaml: |-
host: 0.0.0.0
port: 5555
Expand Down

0 comments on commit f39323c

Please sign in to comment.