-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prep 0.0.14 release * Install ginkgo outside the tree to avoid change to go.sum * Install controller-gen separately as well * Use bash as default shell * Bump image to in deployment template 0.0.14
- Loading branch information
Vivek Lakshmanan
authored
Jul 2, 2021
1 parent
9a62c7c
commit 597053a
Showing
9 changed files
with
22 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,9 @@ jobs: | |
with: | ||
go-version: 1.16.x | ||
- name: Install Ginkgo testing framework | ||
run: go install github.com/onsi/ginkgo/ginkgo | ||
run: | | ||
# Do the install from outside the code tree to avoid messing with go.sum | ||
cd /tmp; go install github.com/onsi/ginkgo/[email protected] | ||
- name: Setup gcloud CLI for GKE testing cluster | ||
uses: GoogleCloudPlatform/github-actions/setup-gcloud@master | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,9 @@ jobs: | |
with: | ||
go-version: "1.16.2" | ||
- name: Install Ginkgo testing framework | ||
run: go install github.com/onsi/ginkgo/ginkgo | ||
run: | | ||
# Do the install from outside the code tree to avoid messing with go.sum | ||
cd /tmp; go install github.com/onsi/ginkgo/[email protected] | ||
- name: Setup gcloud CLI for GKE testing cluster | ||
uses: GoogleCloudPlatform/github-actions/setup-gcloud@master | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,9 @@ jobs: | |
with: | ||
go-version: 1.16.x | ||
- name: Install Ginkgo testing framework | ||
run: go install github.com/onsi/ginkgo/ginkgo | ||
run: | | ||
# Do the install from outside the code tree to avoid messing with go.sum | ||
cd /tmp; go install github.com/onsi/ginkgo/[email protected] | ||
- name: Setup gcloud CLI for GKE testing cluster | ||
uses: GoogleCloudPlatform/github-actions/setup-gcloud@master | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
SHELL := /bin/bash | ||
GIT_COMMIT := $(shell git rev-parse --short HEAD) | ||
VERSION := $(GIT_COMMIT) | ||
PUBLISH_IMAGE_NAME := pulumi/pulumi-kubernetes-operator | ||
|
@@ -9,7 +10,10 @@ default: build | |
install-crds: | ||
kubectl apply -f deploy/crds/pulumi.com_stacks.yaml | ||
|
||
codegen: generate-k8s generate-crds | ||
codegen: install-controller-gen generate-k8s generate-crds | ||
|
||
install-controller-gen: | ||
@echo "Installing controller-gen to GOPATH/bin"; pushd /tmp >& /dev/null && go install sigs.k8s.io/controller-tools/cmd/[email protected] ; popd >& /dev/null | ||
|
||
generate-crds: | ||
./scripts/generate_crds.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters