Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 335 Bytes

README.md

File metadata and controls

11 lines (10 loc) · 335 Bytes

Simple Migration Example

$ kubectl apply -f service.yaml
$ migrate --migrations-dir ./migrations --direction up
$ kubectl get service/test-service | grep targetPort
    targetPort: 9371
$ migrate --migrations-dir ./migrations --direction down
$ kubectl get service/test-service | grep targetPort
    targetPort: 9376