Skip to content

Commit

Permalink
Renovate/schema validation (#106)
Browse files Browse the repository at this point in the history
* Update values.schema for schema validation for dex operator credentials

* Update .nancy-ignore
  • Loading branch information
OnurYilmazGit authored Jan 24, 2024
1 parent 6f14d5f commit 50491a1
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
1 change: 1 addition & 0 deletions .nancy-ignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
CVE-2020-8561 until=2024-01-01
CVE-2023-48795 until=2024-01-24
34 changes: 32 additions & 2 deletions helm/dex-operator/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,22 @@
"type": "object",
"properties": {
"providers": {
"type": "array"
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"credentials": {
"type": "string"
}
},
"required": [
"name",
"credentials"
]
}
},
"write_all_groups": {
"type": "array"
Expand All @@ -50,7 +65,22 @@
"type": "object",
"properties": {
"providers": {
"type": "array"
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"credentials": {
"type": "string"
}
},
"required": [
"name",
"credentials"
]
}
},
"write_all_groups": {
"type": "array"
Expand Down

0 comments on commit 50491a1

Please sign in to comment.