You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am using ssh-task in deployment job, this ssh-task is connected to server with ubuntu user where kubectl command are running.
When I am running same command directly on server, it working but when I am running it using job its showing command not found.
Is this due to ssh-task?
Hi @kswati,
It is possible that your problem is not Bamboo related but a constraint on how an SSH command is run.
A command running with SSH does not get the same environment variables as if it was run with a logged in user on terminal. The reason is that we have a non-interactive terminal instead of an interactive one.
You should see completely different results from
Env as and SSH command:
$ ssh user@localhost 'env'
Env from terminal:
$ env
Suggestion for troubleshooting
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.