You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When following the quickstart instructions of armada-operator running make kind-all it runs make get-armadactl
This downloads the armdatactl copies to $HOME/bin/armadatctl but leaves 3 files behind making the git repo dirty
The files are:
armadactl
README.md
MAINTAINERS.md
To reproduce:
git clone https://github.com/armadaproject/armada-operator
cd armada-operator
make get-armadactl
Now check the git status notice the 3 files
On branch main
Your branch is up to date with 'origin/main'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: MAINTAINERS.md
modified: README.md
Untracked files:
(use "git add <file>..." to include in what will be committed)
armadactl
The text was updated successfully, but these errors were encountered:
Seeing the script that triggers make get-armadactl that is this script , i can see they are using VERSION=v0.8.2 with a TODO
TODO: This is commented out due to an issue with release process. Until we fix integration tests run on release, we will use the hardcoded version v0.8.2 #VERSION=$(get_latest_release) VERSION=v0.8.2
this version is causing the problem as when i ran the version as VERSION=v0.9.3 , it did not update the Maintainers or the Readme files or added the License file
i think the latest version solves this issue
i dont know the if the integration tests are fixed or not or else id make a pr
When following the quickstart instructions of armada-operator running
make kind-all
it runsmake get-armadactl
This downloads the
armdatactl
copies to$HOME/bin/armadatctl
but leaves 3 files behind making the git repo dirtyThe files are:
To reproduce:
git clone https://github.com/armadaproject/armada-operator cd armada-operator make get-armadactl
Now check the
git status
notice the 3 filesThe text was updated successfully, but these errors were encountered: