From 652ca99626b802ab3faa4213b9312ef9b03c83da Mon Sep 17 00:00:00 2001 From: Keith Chong Date: Mon, 24 Feb 2025 11:38:48 -0500 Subject: [PATCH] .metadata.name and .spec missing creating RolloutMgr (#6029) Signed-off-by: Keith Chong --- .../gitops-operator.clusterserviceversion.yaml | 18 +++++++++++++++++- .../samples/argoproj.io_v1alpha1_rollout.yaml | 5 +++++ .../argoproj.io_v1alpha1_rolloutmanager.yaml | 5 +++++ config/samples/kustomization.yaml | 2 ++ 4 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 config/samples/argoproj.io_v1alpha1_rollout.yaml create mode 100644 config/samples/argoproj.io_v1alpha1_rolloutmanager.yaml diff --git a/bundle/manifests/gitops-operator.clusterserviceversion.yaml b/bundle/manifests/gitops-operator.clusterserviceversion.yaml index ceb509be9..d7a526e64 100644 --- a/bundle/manifests/gitops-operator.clusterserviceversion.yaml +++ b/bundle/manifests/gitops-operator.clusterserviceversion.yaml @@ -57,6 +57,22 @@ metadata: } } }, + { + "apiVersion": "argoproj.io/v1alpha1", + "kind": "Rollout", + "metadata": { + "name": "example" + }, + "spec": null + }, + { + "apiVersion": "argoproj.io/v1alpha1", + "kind": "RolloutManager", + "metadata": { + "name": "example" + }, + "spec": null + }, { "apiVersion": "argoproj.io/v1beta1", "kind": "ArgoCD", @@ -164,7 +180,7 @@ metadata: capabilities: Deep Insights console.openshift.io/plugins: '["gitops-plugin"]' containerImage: quay.io/redhat-developer/gitops-operator - createdAt: "2025-02-19T18:47:24Z" + createdAt: "2025-02-24T16:35:37Z" description: Enables teams to adopt GitOps principles for managing cluster configurations and application delivery across hybrid multi-cluster Kubernetes environments. features.operators.openshift.io/disconnected: "true" diff --git a/config/samples/argoproj.io_v1alpha1_rollout.yaml b/config/samples/argoproj.io_v1alpha1_rollout.yaml new file mode 100644 index 000000000..6b82c6416 --- /dev/null +++ b/config/samples/argoproj.io_v1alpha1_rollout.yaml @@ -0,0 +1,5 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Rollout +metadata: + name: example +spec: \ No newline at end of file diff --git a/config/samples/argoproj.io_v1alpha1_rolloutmanager.yaml b/config/samples/argoproj.io_v1alpha1_rolloutmanager.yaml new file mode 100644 index 000000000..e950e4f79 --- /dev/null +++ b/config/samples/argoproj.io_v1alpha1_rolloutmanager.yaml @@ -0,0 +1,5 @@ +apiVersion: argoproj.io/v1alpha1 +kind: RolloutManager +metadata: + name: example +spec: \ No newline at end of file diff --git a/config/samples/kustomization.yaml b/config/samples/kustomization.yaml index d95bfef97..0c7cc7858 100644 --- a/config/samples/kustomization.yaml +++ b/config/samples/kustomization.yaml @@ -6,4 +6,6 @@ resources: - argoproj.io_v1alpha1_applicationset.yaml - argoproj.io_v1alpha1_appproject.yaml - argoproj.io_v1alpha1_notificationsconfiguration.yaml +- argoproj.io_v1alpha1_rollout.yaml +- argoproj.io_v1alpha1_rolloutmanager.yaml #+kubebuilder:scaffold:manifestskustomizesamples