Skip to content

Commit

Permalink
Use ( not {
Browse files Browse the repository at this point in the history
  • Loading branch information
caseydavenport committed Oct 22, 2024
1 parent 5b0671d commit 7ab5081
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ gen-manifests: bin/helm
# Get operator CRDs from the operator repo, OPERATOR_BRANCH must be set
get-operator-crds: var-require-all-OPERATOR_BRANCH
@echo ================================================================
@echo === Pulling new operator CRDs from branch ${OPERATOR_BRANCH} ===
@echo === Pulling new operator CRDs from branch $(OPERATOR_BRANCH) ===
@echo ================================================================
cd ./charts/tigera-operator/crds/ && \
for file in operator.tigera.io_*.yaml; do echo "downloading $$file from operator repo" && curl -fsSL https://raw.githubusercontent.com/tigera/operator/${OPERATOR_BRANCH}/pkg/crds/operator/$${file%_crd.yaml}.yaml -o $${file}; done
for file in operator.tigera.io_*.yaml; do echo "downloading $$file from operator repo" && curl -fsSL https://raw.githubusercontent.com/tigera/operator/$(OPERATOR_BRANCH)/pkg/crds/operator/$${file%_crd.yaml}.yaml -o $${file}; done
cd ./manifests/ocp/ && \
for file in operator.tigera.io_*.yaml; do echo "downloading $$file from operator repo" && curl -fsSL https://raw.githubusercontent.com/tigera/operator/${OPERATOR_BRANCH}/pkg/crds/operator/$${file%_crd.yaml}.yaml -o $${file}; done
for file in operator.tigera.io_*.yaml; do echo "downloading $$file from operator repo" && curl -fsSL https://raw.githubusercontent.com/tigera/operator/$(OPERATOR_BRANCH)/pkg/crds/operator/$${file%_crd.yaml}.yaml -o $${file}; done

gen-semaphore-yaml:
cd .semaphore && ./generate-semaphore-yaml.sh
Expand Down
1 change: 1 addition & 0 deletions release/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ When starting development on a new minor release, the first step is to create a

- charts/calico/values.yaml
- charts/tigera-operator/values.yaml
- metadata.mk (OPERATOR_VERSION)

Then, run manifest generation

Expand Down

0 comments on commit 7ab5081

Please sign in to comment.