Manifest yaml files here are kustomization
templates used to deploy the harbor operator as well its dependant operators.
- Deployments of
Cert Manager
andIngress Controller
are not covered yet. - Other relying on operators are linked via remote manifests.
deployment.yaml
is the all-in-one operator deployment manifest yaml file built by thekustomization
templates.
Directly use deployment yaml:
kubectl apply -f ./deployment.yaml
Use kustomize
:
kustomize build . | kubectl apply -f -
Use manifest:
kubectl delete -f ./deployment.yaml
Use kustomize
:
kustomize build . | kubectl delete -f -