Fix: test passing kubernetes commands as args rather than command
parent
d1dd5b8ef4
commit
f10277a368
|
|
@ -1424,7 +1424,7 @@ class Kubernetes {
|
||||||
{
|
{
|
||||||
name: 'main',
|
name: 'main',
|
||||||
image,
|
image,
|
||||||
command,
|
args: command,
|
||||||
workingDir: `/${workingDirectory}`,
|
workingDir: `/${workingDirectory}`,
|
||||||
resources: {
|
resources: {
|
||||||
requests: {
|
requests: {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -203,7 +203,8 @@ class Kubernetes implements RemoteBuilderProviderInterface {
|
||||||
{
|
{
|
||||||
name: 'main',
|
name: 'main',
|
||||||
image,
|
image,
|
||||||
command,
|
args: command,
|
||||||
|
|
||||||
workingDir: `/${workingDirectory}`,
|
workingDir: `/${workingDirectory}`,
|
||||||
resources: {
|
resources: {
|
||||||
requests: {
|
requests: {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue