Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug(Deployment Chart): command.workingDir should be a string instead of a object #6477

Open
TGTGamer opened this issue Mar 26, 2025 · 0 comments · May be fixed by #6481
Open

bug(Deployment Chart): command.workingDir should be a string instead of a object #6477

TGTGamer opened this issue Mar 26, 2025 · 0 comments · May be fixed by #6481
Labels
triage-accepted Issue is accepted by the organisation to be worked on.

Comments

@TGTGamer
Copy link

"workingDir": {
"type": "object",
"items": {},
"description": "contains the working directory",
"title": "Working directory"
}

should be:

 "workingDir": { 
   "type": "string", 
   "items": {}, 
   "description": "contains the working directory", 
   "title": "Working directory" 
 }

So that this works:

command:
  enabled: true
  value:
    - sh
    - startup.sh
  workingDir: /string/to/path

Current error:
Incorrect type. Expected "Working directory".yaml-schema: Working directory(0)

@satyampsoni satyampsoni linked a pull request Mar 27, 2025 that will close this issue
7 tasks
@satyampsoni satyampsoni added the triage-accepted Issue is accepted by the organisation to be worked on. label Mar 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
triage-accepted Issue is accepted by the organisation to be worked on.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants