Skip to content

Latest commit

 

History

History

harbor

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Deployment manifests

Manifest yaml files here are kustomization templates used to deploy only the harbor operator.

Notes

  • deployment.yaml is the operator deployment manifest yaml file built by the kustomization templates.

Usage

Deploy

Directly use deployment yaml:

kubectl apply -f ./deployment.yaml

Use kustomize:

kustomize build . | kubectl apply -f -

Uninstall

Use manifest:

kubectl delete -f ./deployment.yaml

Use kustomize:

kustomize build . | kubectl delete -f -