Skip to content

Commit

Permalink
Add serviceMonitor field to Helm values.schema.json
Browse files Browse the repository at this point in the history
  • Loading branch information
lillykwasn committed Dec 3, 2024
1 parent 6e9ec7b commit 7cdab79
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions charts/external-dns/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,52 @@
"type": "integer"
}
}
},
"serviceMonitor": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"namespace": {
"type": "string"
},
"labels": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"interval": {
"type": "string"
},
"path": {
"type": "string"
},
"port": {
"type": "string"
},
"scheme": {
"type": "string"
},
"tlsConfig": {
"type": "object",
"properties": {
"insecureSkipVerify": {
"type": "boolean"
},
"caFile": {
"type": "string"
},
"certFile": {
"type": "string"
},
"keyFile": {
"type": "string"
}
}
}
}
}
}
}

0 comments on commit 7cdab79

Please sign in to comment.