Skip to content

Commit

Permalink
Assert that CRDs are present in Helm chart as file (#5)
Browse files Browse the repository at this point in the history
* Assert that CRDs are present in Helm chart as file
  • Loading branch information
martin-helmich authored Aug 12, 2020
1 parent fa2b305 commit ceca0f6
Show file tree
Hide file tree
Showing 4 changed files with 3,000 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/verify-codegen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ jobs:
run: sudo curl -L -o /usr/local/bin/operator-sdk "https://github.com/operator-framework/operator-sdk/releases/download/${OPERATOR_SDK_VERSION}/operator-sdk-${OPERATOR_SDK_VERSION}-x86_64-linux-gnu" && sudo chmod +x /usr/local/bin/operator-sdk

- name: Run code generation
run: operator-sdk generate k8s && operator-sdk generate crds
run: |
operator-sdk generate k8s
operator-sdk generate crds
cp deploy/crds/*_crd.yaml deploy/helm-chart/kubeav/crds/
- name: Test diff
run: |
Expand Down
Empty file.

This file was deleted.

Loading

0 comments on commit ceca0f6

Please sign in to comment.