I’ve introduced Kustomize
in this earlier post, now I feel even happier because Kustomize
can be even more customized for some CRDs(Custom Resource Definition). For instance, Kustomize
doesn’t know how to handle Istio’s VirtualService object, but with some simple YAML style configurations it ‘learns’ to handle that easily.
YAML
x
13
13
1
# k8s service, ie. service.yaml
2
apiVersion v1
3
kind Service
4
metadata
5
name wordpress-svc
6
spec
7
selector
8
app wordpress
9
ports
10
name http
11
port80
12
targetPort8080
13
type NodePort
YAML
xxxxxxxxxx
1
16
16
1
# istio virtual service. ie. virtual-service.yaml
2
apiVersion networking.istio.io/v1alpha3
3
kind VirtualService
4
metadata
5
name wordpress-vs
6
spec
7
hosts
8
wordpress
9
http
10
match
11
uri /
12
route
13
destination
14
host wordpress-svc
15
port
16
number80
YAML
xxxxxxxxxx
1
7
1
# kustomize name reference, ie. name-reference.yaml
2
nameReference
3
kind Service
4
version v1
5
fieldSpecs
6
path spec/http/route/destination/host
7
kind VirtualService
YAML
xxxxxxxxxx
1
7
1
# main kustomize entry, ie. kustomization.yaml
2
apiVersion kustomize.config.k8s.io/v1beta1
3
kind Kustomization
4
configurations
5
name-reference.yaml
6
namespace wordpress
7
nameSuffix -raynix
So in name-reference.yaml, kustomize
will learn the host
property in VirtualService
will be linked to the metadata.name
of a service. When the name suffix -raynix
is applied to the Service
, it will also be applied to the VirtualService
, eg.
YAML
xxxxxxxxxx
1
12
12
1
kind Service
2
metadata
3
name wordpress-svc-raynix
4
...
5
6
kind VirtualService
7
spec
8
http
9
route
10
destination
11
host wordpress-svc-raynix
12
...
For more information: transformer configs