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

.metadata.name and .spec missing creating RolloutMgr (#6029) #830

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
18 changes: 17 additions & 1 deletion bundle/manifests/gitops-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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"
Expand Down
5 changes: 5 additions & 0 deletions config/samples/argoproj.io_v1alpha1_rollout.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apiVersion: argoproj.io/v1alpha1
kind: Rollout
metadata:
name: example
spec:
5 changes: 5 additions & 0 deletions config/samples/argoproj.io_v1alpha1_rolloutmanager.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apiVersion: argoproj.io/v1alpha1
kind: RolloutManager
metadata:
name: example
spec:
2 changes: 2 additions & 0 deletions config/samples/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading