Skip to content

Commit

Permalink
Update values.schema.json
Browse files Browse the repository at this point in the history
  • Loading branch information
petar-cvit committed Feb 25, 2024
1 parent 3cf38c0 commit 04cb664
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions demo/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@
},
"replicas": {
"description": "Number of replicas",
"type": "integer"
"type": "integer",
"minimum": 0,
"maximum": 5
},
"image": {
"description": "Container Image",
"type": "string"
"type": "string",
"minLength": 2,
"maxLength": 10
},
"version": {
"description": "Container image version",
Expand Down

0 comments on commit 04cb664

Please sign in to comment.