mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-09-15 04:12:43 +00:00
Previously, only a single embedded Kubernetes API version could be specified, resulting in a lack of support for certain GVKs. To address this, the goal is to create and utilize a unified scheme that consolidates Kubernetes API definitions. As a preliminary step, the current method of loading API definitions will be improved.
14 lines
199 B
Makefile
14 lines
199 B
Makefile
# Copyright 2020 The Kubernetes Authors.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
.PHONY: all
|
|
all: generate
|
|
|
|
.PHONY: generate
|
|
generate:
|
|
go generate .
|
|
|
|
.PHONY: verify
|
|
verify:
|
|
GOWORK=off go test ./...
|