mirror of https://github.com/helm/helm
Merge 05813ffa55 into 42f78ba60e
commit
da27fd41c3
@ -0,0 +1,3 @@
|
||||
ipAddress4: "invalid-ip"
|
||||
ipAddress6: "2001:0db8:85a3:0000:0000:8a2e:0370:7334:11111111"
|
||||
email: "invalid-email"
|
||||
@ -0,0 +1,23 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "Values",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ipAddress4": {
|
||||
"description": "IPv4 address",
|
||||
"type": "string",
|
||||
"format": "ipv4"
|
||||
},
|
||||
"ipAddress6": {
|
||||
"description": "IPv6 address",
|
||||
"type": "string",
|
||||
"format": "ipv6"
|
||||
},
|
||||
"email": {
|
||||
"description": "Email address",
|
||||
"type": "string",
|
||||
"format": "email"
|
||||
}
|
||||
},
|
||||
"required": ["email", "ipAddress4", "ipAddress6"]
|
||||
}
|
||||
@ -0,0 +1,3 @@
|
||||
ipAddress4: "192.168.1.1"
|
||||
ipAddress6: "2001:0db8:85a3:0000:0000:8a2e:0370:7334"
|
||||
email: "user@example.com"
|
||||
Loading…
Reference in new issue