Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Commit

Permalink
update readme with fixed values schema in example
Browse files Browse the repository at this point in the history
  • Loading branch information
karuppiah7890 committed Dec 29, 2019
1 parent 4e289e5 commit db741ac
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ serviceAccount:
create: true
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
name:
podSecurityContext: {}
# fsGroup: 2000
Expand Down Expand Up @@ -110,9 +110,6 @@ $ helm schema-gen values.yaml
},
"repository": {
"type": "string"
},
"tag": {
"type": "string"
}
}
},
Expand All @@ -129,7 +126,18 @@ $ helm schema-gen values.yaml
"type": "boolean"
},
"hosts": {
"type": "array"
"type": "array",
"items": {
"type": "object",
"properties": {
"host": {
"type": "string"
},
"paths": {
"type": "array"
}
}
}
},
"tls": {
"type": "array"
Expand Down Expand Up @@ -172,7 +180,7 @@ $ helm schema-gen values.yaml
"type": "boolean"
},
"name": {
"type": "string"
"type": "null"
}
}
},
Expand Down

0 comments on commit db741ac

Please sign in to comment.