mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-24 15:57:00 +00:00
[doc]: https://github.com/golang/go/wiki/Modules#releasing-modules-v2-or-higher Per this Go modules [doc] a repo or branch that's already tagged v2 or higher should increment the major version (e.g. go to v3) when releasing their first Go module-based packages. At the moment, the kustomize repo has these top level packages in the sigs.k8s.io/kustomize module: - `cmd` - holds main program for kustomize Conceivably someone can depend on this package for integration tests. - `internal` - intentionally unreleased subpackages - `k8sdeps` - an adapter wrapping k8s dependencies This exists only for use in pre-Go-modules kustomize-into-kubectl integration and won't live much longer (as everything involved is switching to Go modules). - `pkg` - kustomize packages for export This should shrink in later versions, since the surface area is too large, containing sub-packages that should be in 'internal'. - `plugin` - holds main programs for plugins This PR changes the top level go.mod file from ``` module sigs.k8s.io/kustomize ``` to ``` module sigs.k8s.io/kustomize/v3 ``` and adjusts all import statements to reflect the change.
327 lines
6.7 KiB
Go
327 lines
6.7 KiB
Go
/*
|
|
Copyright 2018 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package target_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"sigs.k8s.io/kustomize/v3/pkg/kusttest"
|
|
)
|
|
|
|
func writeMediumBase(th *kusttest_test.KustTestHarness) {
|
|
th.WriteK("/app/base", `
|
|
namePrefix: baseprefix-
|
|
commonLabels:
|
|
foo: bar
|
|
commonAnnotations:
|
|
baseAnno: This is a base annotation
|
|
resources:
|
|
- deployment/deployment.yaml
|
|
- service/service.yaml
|
|
`)
|
|
th.WriteF("/app/base/service/service.yaml", `
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: mungebot-service
|
|
labels:
|
|
app: mungebot
|
|
spec:
|
|
ports:
|
|
- port: 7002
|
|
selector:
|
|
app: mungebot
|
|
`)
|
|
th.WriteF("/app/base/deployment/deployment.yaml", `
|
|
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: mungebot
|
|
labels:
|
|
app: mungebot
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: mungebot
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx
|
|
env:
|
|
- name: foo
|
|
value: bar
|
|
ports:
|
|
- containerPort: 80
|
|
`)
|
|
}
|
|
|
|
func TestMediumBase(t *testing.T) {
|
|
th := kusttest_test.NewKustTestHarness(t, "/app/base")
|
|
writeMediumBase(th)
|
|
m, err := th.MakeKustTarget().MakeCustomizedResMap()
|
|
if err != nil {
|
|
t.Fatalf("Err: %v", err)
|
|
}
|
|
th.AssertActualEqualsExpected(m, `
|
|
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
annotations:
|
|
baseAnno: This is a base annotation
|
|
labels:
|
|
app: mungebot
|
|
foo: bar
|
|
name: baseprefix-mungebot
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
foo: bar
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
baseAnno: This is a base annotation
|
|
labels:
|
|
app: mungebot
|
|
foo: bar
|
|
spec:
|
|
containers:
|
|
- env:
|
|
- name: foo
|
|
value: bar
|
|
image: nginx
|
|
name: nginx
|
|
ports:
|
|
- containerPort: 80
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
annotations:
|
|
baseAnno: This is a base annotation
|
|
labels:
|
|
app: mungebot
|
|
foo: bar
|
|
name: baseprefix-mungebot-service
|
|
spec:
|
|
ports:
|
|
- port: 7002
|
|
selector:
|
|
app: mungebot
|
|
foo: bar
|
|
`)
|
|
}
|
|
|
|
func TestMediumOverlay(t *testing.T) {
|
|
th := kusttest_test.NewKustTestHarness(t, "/app/overlay")
|
|
writeMediumBase(th)
|
|
th.WriteK("/app/overlay", `
|
|
namePrefix: test-infra-
|
|
commonLabels:
|
|
app: mungebot
|
|
org: kubernetes
|
|
repo: test-infra
|
|
commonAnnotations:
|
|
note: This is a test annotation
|
|
resources:
|
|
- ../base
|
|
patchesStrategicMerge:
|
|
- deployment/deployment.yaml
|
|
configMapGenerator:
|
|
- name: app-env
|
|
env: configmap/db.env
|
|
envs:
|
|
- configmap/units.ini
|
|
- configmap/food.ini
|
|
- name: app-config
|
|
files:
|
|
- nonsense=configmap/dummy.txt
|
|
images:
|
|
- name: nginx
|
|
newTag: 1.8.0`)
|
|
|
|
th.WriteF("/app/overlay/configmap/db.env", `
|
|
DB_USERNAME=admin
|
|
DB_PASSWORD=somepw
|
|
`)
|
|
th.WriteF("/app/overlay/configmap/units.ini", `
|
|
LENGTH=kilometer
|
|
ENERGY=electronvolt
|
|
`)
|
|
th.WriteF("/app/overlay/configmap/food.ini", `
|
|
FRUIT=banana
|
|
LEGUME=chickpea
|
|
`)
|
|
th.WriteF("/app/overlay/configmap/dummy.txt",
|
|
`Lorem ipsum dolor sit amet, consectetur
|
|
adipiscing elit, sed do eiusmod tempor
|
|
incididunt ut labore et dolore magna aliqua.
|
|
`)
|
|
th.WriteF("/app/overlay/deployment/deployment.yaml", `
|
|
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: mungebot
|
|
spec:
|
|
replicas: 2
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.7.9
|
|
env:
|
|
- name: FOO
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: app-env
|
|
key: somekey
|
|
- name: busybox
|
|
image: busybox
|
|
envFrom:
|
|
- configMapRef:
|
|
name: someConfigMap
|
|
- configMapRef:
|
|
name: app-env
|
|
volumeMounts:
|
|
- mountPath: /tmp/env
|
|
name: app-env
|
|
volumes:
|
|
- configMap:
|
|
name: app-env
|
|
name: app-env
|
|
`)
|
|
m, err := th.MakeKustTarget().MakeCustomizedResMap()
|
|
if err != nil {
|
|
t.Fatalf("Err: %v", err)
|
|
}
|
|
th.AssertActualEqualsExpected(m, `
|
|
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
annotations:
|
|
baseAnno: This is a base annotation
|
|
note: This is a test annotation
|
|
labels:
|
|
app: mungebot
|
|
foo: bar
|
|
org: kubernetes
|
|
repo: test-infra
|
|
name: test-infra-baseprefix-mungebot
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: mungebot
|
|
foo: bar
|
|
org: kubernetes
|
|
repo: test-infra
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
baseAnno: This is a base annotation
|
|
note: This is a test annotation
|
|
labels:
|
|
app: mungebot
|
|
foo: bar
|
|
org: kubernetes
|
|
repo: test-infra
|
|
spec:
|
|
containers:
|
|
- env:
|
|
- name: FOO
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
key: somekey
|
|
name: test-infra-app-env-ffmd9b969m
|
|
- name: foo
|
|
value: bar
|
|
image: nginx:1.8.0
|
|
name: nginx
|
|
ports:
|
|
- containerPort: 80
|
|
- envFrom:
|
|
- configMapRef:
|
|
name: someConfigMap
|
|
- configMapRef:
|
|
name: test-infra-app-env-ffmd9b969m
|
|
image: busybox
|
|
name: busybox
|
|
volumeMounts:
|
|
- mountPath: /tmp/env
|
|
name: app-env
|
|
volumes:
|
|
- configMap:
|
|
name: test-infra-app-env-ffmd9b969m
|
|
name: app-env
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
annotations:
|
|
baseAnno: This is a base annotation
|
|
note: This is a test annotation
|
|
labels:
|
|
app: mungebot
|
|
foo: bar
|
|
org: kubernetes
|
|
repo: test-infra
|
|
name: test-infra-baseprefix-mungebot-service
|
|
spec:
|
|
ports:
|
|
- port: 7002
|
|
selector:
|
|
app: mungebot
|
|
foo: bar
|
|
org: kubernetes
|
|
repo: test-infra
|
|
---
|
|
apiVersion: v1
|
|
data:
|
|
DB_PASSWORD: somepw
|
|
DB_USERNAME: admin
|
|
ENERGY: electronvolt
|
|
FRUIT: banana
|
|
LEGUME: chickpea
|
|
LENGTH: kilometer
|
|
kind: ConfigMap
|
|
metadata:
|
|
annotations:
|
|
note: This is a test annotation
|
|
labels:
|
|
app: mungebot
|
|
org: kubernetes
|
|
repo: test-infra
|
|
name: test-infra-app-env-ffmd9b969m
|
|
---
|
|
apiVersion: v1
|
|
data:
|
|
nonsense: "Lorem ipsum dolor sit amet, consectetur\nadipiscing elit, sed do eiusmod
|
|
tempor\nincididunt ut labore et dolore magna aliqua. \n"
|
|
kind: ConfigMap
|
|
metadata:
|
|
annotations:
|
|
note: This is a test annotation
|
|
labels:
|
|
app: mungebot
|
|
org: kubernetes
|
|
repo: test-infra
|
|
name: test-infra-app-config-f462h769f9
|
|
`)
|
|
}
|