summaryrefslogtreecommitdiffstats
path: root/certServiceK8sExternalProvider/src/cmpv2api/cmpv2_issuer_crd_schema.go
diff options
context:
space:
mode:
authorBogumil Zebek <bogumil.zebek@nokia.com>2020-10-20 12:16:53 +0000
committerGerrit Code Review <gerrit@onap.org>2020-10-20 12:16:53 +0000
commit9c0aafccfea96d461723a1dd3c5cc0818bc02c42 (patch)
tree9ff1f33d00ac28a24d3fe92bdf240c3f0ba8bdb8 /certServiceK8sExternalProvider/src/cmpv2api/cmpv2_issuer_crd_schema.go
parent5a2e510430cfdc8ce05f6a771ba8787c8e85b5e1 (diff)
parentf85be7d76bf73d59dd4d70ffd07f1e34dfd1a2ef (diff)
Merge "[OOM-K8S-CERT-EXTERNAL-PROVIDER] Provide certs to CMPv2 Issuer"
Diffstat (limited to 'certServiceK8sExternalProvider/src/cmpv2api/cmpv2_issuer_crd_schema.go')
-rw-r--r--certServiceK8sExternalProvider/src/cmpv2api/cmpv2_issuer_crd_schema.go15
1 files changed, 9 insertions, 6 deletions
diff --git a/certServiceK8sExternalProvider/src/cmpv2api/cmpv2_issuer_crd_schema.go b/certServiceK8sExternalProvider/src/cmpv2api/cmpv2_issuer_crd_schema.go
index f2482657..f26dc876 100644
--- a/certServiceK8sExternalProvider/src/cmpv2api/cmpv2_issuer_crd_schema.go
+++ b/certServiceK8sExternalProvider/src/cmpv2api/cmpv2_issuer_crd_schema.go
@@ -37,10 +37,10 @@ func init() {
type CMPv2IssuerSpec struct {
// URL is the base URL for the CertService certificates instance.
URL string `json:"url"`
-
+ // CaName is the name of the external CA server
+ CaName string `json:"caName"`
// KeyRef is a reference to a Secret containing the provisioner
- // password used to decrypt the provisioner private key.
- KeyRef SecretKeySelector `json:"keyRef"`
+ CertSecretRef SecretKeySelector `json:"certSecretRef"`
}
// CMPv2IssuerStatus defines the observed state of CMPv2Issuer
@@ -72,9 +72,12 @@ type SecretKeySelector struct {
// The name of the secret in the pod's namespace to select from.
Name string `json:"name"`
- // The key of the secret to select from. Must be a valid secret key.
- // +optional
- Key string `json:"key,omitempty"`
+ // The key of the secret to select private key from. Must be a valid secret key.
+ KeyRef string `json:"keyRef,omitempty"`
+ // The key of the secret to select cert from. Must be a valid secret key.
+ CertRef string `json:"certRef,omitempty"`
+ // The key of the secret to select cacert from. Must be a valid secret key.
+ CacertRef string `json:"cacertRef,omitempty"`
}
// ConditionType represents a CMPv2Issuer condition type.