|
|
@@ -149,6 +149,7 @@ type SecretStoreStatus struct {
|
|
|
// SecretStore represents a secure external location for storing secrets, which can be referenced as part of `storeRef` fields.
|
|
|
// +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp"
|
|
|
// +kubebuilder:printcolumn:name="Status",type=string,JSONPath=`.status.conditions[?(@.type=="Ready")].reason`
|
|
|
+// +kubebuilder:printcolumn:name="Ready",type=string,JSONPath=`.status.conditions[?(@.type=="Ready")].status`
|
|
|
// +kubebuilder:subresource:status
|
|
|
// +kubebuilder:resource:scope=Namespaced,categories={externalsecrets},shortName=ss
|
|
|
type SecretStore struct {
|
|
|
@@ -173,6 +174,8 @@ type SecretStoreList struct {
|
|
|
|
|
|
// ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of `storeRef` fields.
|
|
|
// +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp"
|
|
|
+// +kubebuilder:printcolumn:name="Status",type=string,JSONPath=`.status.conditions[?(@.type=="Ready")].reason`
|
|
|
+// +kubebuilder:printcolumn:name="Ready",type=string,JSONPath=`.status.conditions[?(@.type=="Ready")].status`
|
|
|
// +kubebuilder:subresource:status
|
|
|
// +kubebuilder:resource:scope=Cluster,categories={externalsecrets},shortName=css
|
|
|
type ClusterSecretStore struct {
|