Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add-missing-metadata #331

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 14 additions & 11 deletions bundle/manifests/rhtas-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,6 @@ apiVersion: operators.coreos.com/v1alpha1
kind: ClusterServiceVersion
metadata:
annotations:
features.operators.openshift.io/disconnected: "false"
features.operators.openshift.io/fips-compliant: "false"
features.operators.openshift.io/proxy-aware: "false"
features.operators.openshift.io/cnf: "false"
features.operators.openshift.io/cni: "false"
features.operators.openshift.io/csi: "false"
features.operators.openshift.io/tls-profiles: "false"
features.operators.openshift.io/token-auth-aws: "false"
features.operators.openshift.io/token-auth-azure: "false"
features.operators.openshift.io/token-auth-gcp: "false"
alm-examples: |-
[
{
Expand Down Expand Up @@ -190,9 +180,22 @@ metadata:
}
]
capabilities: Basic Install
createdAt: "2024-04-04T07:35:04Z"
containerImage: registry.redhat.io/rhtas/rhtas-rhel9-operator@sha256:2d2a22420249890a64b42c663d57c4b5c6638e0597fe74b01b275ba915e53ea2
createdAt: "2024-04-18T08:46:25Z"
features.operators.openshift.io/cnf: "false"
features.operators.openshift.io/cni: "false"
features.operators.openshift.io/csi: "false"
features.operators.openshift.io/disconnected: "false"
features.operators.openshift.io/fips-compliant: "false"
features.operators.openshift.io/proxy-aware: "false"
features.operators.openshift.io/tls-profiles: "false"
features.operators.openshift.io/token-auth-aws: "false"
features.operators.openshift.io/token-auth-azure: "false"
features.operators.openshift.io/token-auth-gcp: "false"
operators.operatorframework.io/builder: operator-sdk-v1.32.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/securesign/secure-sign-operator
support: Red Hat
name: rhtas-operator.v1.0.0
namespace: placeholder
spec:
Expand Down
13 changes: 13 additions & 0 deletions bundle/manifests/rhtas.redhat.com_ctlogs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,19 @@ spec:
spec:
description: CTlogSpec defines the desired state of CTlog component
properties:
monitoring:
description: Enable Service monitors for ctlog
properties:
enabled:
default: false
description: If true, the Operator will create monitoring resources
type: boolean
x-kubernetes-validations:
- message: Feature cannot be disabled
rule: (self || !oldSelf)
required:
- enabled
type: object
privateKeyPasswordRef:
description: Password to decrypt private key
properties:
Expand Down
28 changes: 28 additions & 0 deletions bundle/manifests/rhtas.redhat.com_securesigns.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,20 @@ spec:
ctlog:
description: CTlogSpec defines the desired state of CTlog component
properties:
monitoring:
description: Enable Service monitors for ctlog
properties:
enabled:
default: false
description: If true, the Operator will create monitoring
resources
type: boolean
x-kubernetes-validations:
- message: Feature cannot be disabled
rule: (self || !oldSelf)
required:
- enabled
type: object
privateKeyPasswordRef:
description: Password to decrypt private key
properties:
Expand Down Expand Up @@ -621,6 +635,20 @@ spec:
x-kubernetes-validations:
- message: databaseSecretRef cannot be empty
rule: ((!self.create && self.databaseSecretRef != null) || self.create)
monitoring:
description: Enable Monitoring for Logsigner and Logserver
properties:
enabled:
default: false
description: If true, the Operator will create monitoring
resources
type: boolean
x-kubernetes-validations:
- message: Feature cannot be disabled
rule: (self || !oldSelf)
required:
- enabled
type: object
type: object
tuf:
default:
Expand Down
13 changes: 13 additions & 0 deletions bundle/manifests/rhtas.redhat.com_trillians.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,19 @@ spec:
x-kubernetes-validations:
- message: databaseSecretRef cannot be empty
rule: ((!self.create && self.databaseSecretRef != null) || self.create)
monitoring:
description: Enable Monitoring for Logsigner and Logserver
properties:
enabled:
default: false
description: If true, the Operator will create monitoring resources
type: boolean
x-kubernetes-validations:
- message: Feature cannot be disabled
rule: (self || !oldSelf)
required:
- enabled
type: object
type: object
status:
description: TrillianStatus defines the observed state of Trillian
Expand Down
13 changes: 13 additions & 0 deletions config/manifests/bases/rhtas-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ metadata:
annotations:
alm-examples: '[]'
capabilities: Basic Install
containerImage: registry.redhat.io/rhtas/rhtas-rhel9-operator@sha256:2d2a22420249890a64b42c663d57c4b5c6638e0597fe74b01b275ba915e53ea2
features.operators.openshift.io/cnf: "false"
features.operators.openshift.io/cni: "false"
features.operators.openshift.io/csi: "false"
features.operators.openshift.io/disconnected: "false"
features.operators.openshift.io/fips-compliant: "false"
features.operators.openshift.io/proxy-aware: "false"
features.operators.openshift.io/tls-profiles: "false"
features.operators.openshift.io/token-auth-aws: "false"
features.operators.openshift.io/token-auth-azure: "false"
features.operators.openshift.io/token-auth-gcp: "false"
repository: https://github.com/securesign/secure-sign-operator
support: Red Hat
name: rhtas-operator.v0.0.1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

v0.0.1 look like some remaining from old release

namespace: placeholder
spec:
Expand Down
Loading