I would like to change namespace of a job in Nomad cluster from one namespaceA to namespaceB.
When I change a namespace in a job UI of Nomad, I notice that it creates 2 jobs in namespaceA and namespaceB.
How can I just keep one namespace?
I would like to change namespace of a job in Nomad cluster from one namespaceA to namespaceB.
When I change a namespace in a job UI of Nomad, I notice that it creates 2 jobs in namespaceA and namespaceB.
How can I just keep one namespace?
Copyright © 2021 Jogjafile Inc.
Updating namespace in the job of the UI will create another job in another namespace --> resulting to 2 jobs (It is the normal behavior of nomad)
To update the job namespace to another job and keep only one namespace :
nomad namespace apply -description "MyNewNamespace description" <my-new-namespace>
nomad job stop <myJob>
nomad job run <path/to>/myjob.nomad
nomad job status
nomad job stop -namespace=<oldNamespace> --purge <myJob>