Skip to content

Commit

Permalink
fix: allow snyk token to be empty
Browse files Browse the repository at this point in the history
  • Loading branch information
soniqua committed Jul 8, 2024
1 parent ca085ae commit c9d85ee
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions charts/snyk-broker/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,16 @@

},
"snykToken":{
"type": "string",
"format": "uuid"
"anyOf": [
{
"type": "string",
"maxLength": 0
},
{
"type": "string",
"format": "uuid"
}
]
},
"caImage": {
"type": "string",
Expand Down

0 comments on commit c9d85ee

Please sign in to comment.