Vladimir Kozhukalov 4b4f8c3412 Initial commit
The plugin provides some convenience for end users
when they deploy Openstack using OSH charts.

There are two plugin subcommands:
- get-values-overrides - generates values
  overrides file names from a set of given feature gates.
  If these files not found then it can try to
  download them via HTTP.
- wait-for-pods - checks if all the containers of all running pods
  are ready and if all jobs are successfully completed.

Change-Id: Idae742ec7945ea367ed0c989b36576f63eb7288c
2024-04-17 13:44:44 -05:00

15 lines
332 B
Makefile

build: get-values-overrides
get-values-overrides: main.go
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -ldflags '-w' -o get-values-overrides
# linting
LINTER := golangci-lint
LINTER_CONFIG := .golangci.yaml
.PHONY: lint
lint:
lint:
$(LINTER) run --config $(LINTER_CONFIG)
# @git --no-pager show --check