Skip to content

Commit

Permalink
backport PSS and PKI delete fix
Browse files Browse the repository at this point in the history
  • Loading branch information
whites11 committed Apr 23, 2024
1 parent 2d0d593 commit 8cd907e
Showing 1 changed file with 113 additions and 0 deletions.
113 changes: 113 additions & 0 deletions helm/cert-operator/values.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"crd": {
"type": "object",
"properties": {
"labelSelector": {
"type": "string"
}
}
},
"global": {
"type": "object",
"properties": {
"podSecurityStandards": {
"type": "object",
"properties": {
"enforced": {
"type": "boolean"
}
}
}
}
},
"groupID": {
"type": "integer"
},
"image": {
"type": "object",
"properties": {
"tag": {
"type": "string"
}
}
},
"k8sJwtToVaultTokenImage": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"tag": {
"type": "string"
}
}
},
"project": {
"type": "object",
"properties": {
"branch": {
"type": "string"
},
"commit": {
"type": "string"
}
}
},
"registry": {
"type": "object",
"properties": {
"domain": {
"type": "string"
}
}
},
"resource": {
"type": "object",
"properties": {
"expirationThreshold": {
"type": "string"
}
}
},
"userID": {
"type": "integer"
},
"vault": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"ca": {
"type": "object",
"properties": {
"ttl": {
"type": "string"
}
}
}
}
},
"workloadCluster": {
"type": "object",
"properties": {
"kubernetes": {
"type": "object",
"properties": {
"api": {
"type": "object",
"properties": {
"endpointBase": {
"type": "string"
}
}
}
}
}
}
}
}
}

0 comments on commit 8cd907e

Please sign in to comment.