-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for
extraVolumes/extraVolumeMounts
(#583)
* Add support for `extraVolumes/extraVolumeMounts` * changelog
- Loading branch information
Showing
26 changed files
with
1,212 additions
and
7 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 |
---|---|---|
|
@@ -23,6 +23,7 @@ install-go-tools: mod-download | |
go install github.com/golang/mock/[email protected] | ||
go install github.com/onsi/ginkgo/v2/[email protected] | ||
go install golang.org/x/tools/cmd/goimports | ||
go install sigs.k8s.io/kind/cmd/[email protected] | ||
|
||
# proto compiler installation | ||
PROTOC_VERSION:=3.15.8 | ||
|
@@ -74,18 +75,26 @@ generate-changelog: | |
# set TEST_PKG to run a specific test package | ||
.PHONY: run-tests | ||
run-tests: | ||
PATH=$(DEPSGOBIN):$$PATH ginkgo -r -failFast -trace -progress \ | ||
-progress \ | ||
PATH=$(DEPSGOBIN):$$PATH ginkgo -r --fail-fast -trace \ | ||
--show-node-events \ | ||
-compilers=4 \ | ||
-skipPackage=$(SKIP_PACKAGES) $(TEST_PKG) \ | ||
$(GINKGO_FLAGS) \ | ||
--skip-package=$(SKIP_PACKAGES) $(TEST_PKG) \ | ||
-failOnPending \ | ||
-randomizeAllSpecs \ | ||
-randomizeSuites \ | ||
-keepGoing | ||
$(DEPSGOBIN)/goimports -w . | ||
|
||
run-test: | ||
PATH=$(DEPSGOBIN):$$PATH ginkgo $(GINKGO_FLAGS) $(TEST_PKG) | ||
test-clusters: | ||
@kind create cluster --name skv2-test-master 2> /dev/null || true | ||
@kind create cluster --name skv2-test-remote 2> /dev/null || true | ||
|
||
# CI workflow for running tests | ||
run-all: REMOTE_CLUSTER_CONTEXT ?= kind-skv2-test-remote | ||
run-all: test-clusters | ||
@go test ./... | ||
@goimports -w . | ||
|
||
#---------------------------------------------------------------------------------- | ||
# Third Party License Management | ||
|
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
changelog: | ||
- type: NEW_FEATURE | ||
issueLink: https://github.com/solo-io/skv2/issues/582 | ||
description: > | ||
Support extraVolumes/extraVolumeMounts fields which can be passed in by the user from helm values. | ||
skipCI: "false" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Code generated by skv2. DO NOT EDIT. | ||
|
||
apiVersion: v1 | ||
home: https://docs.solo.io/skv2/latest | ||
name: Painting Operator | ||
sources: | ||
- https://github.com/solo-io/skv2 | ||
version: v0.0.1 |
Oops, something went wrong.