Skip to content

Commit

Permalink
Add NamespaceManagement reconciliation
Browse files Browse the repository at this point in the history
Signed-off-by: Rizwana777 <rizwananaaz177@gmail.com>
  • Loading branch information
Rizwana777 committed Mar 10, 2025
1 parent 59899ee commit ed51534
Show file tree
Hide file tree
Showing 38 changed files with 11,182 additions and 9,929 deletions.
11 changes: 11 additions & 0 deletions PROJECT
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Code generated by tool. DO NOT EDIT.
# This file is used to track the info used to scaffold your project
# and allow the plugins properly work.
# More info: https://book.kubebuilder.io/reference/project-config.html
layout:
- go.kubebuilder.io/v4
plugins:
Expand Down Expand Up @@ -32,4 +36,11 @@ resources:
webhooks:
conversion: true
webhookVersion: v1
- api:
crdVersion: v1
namespaced: true
group: argoproj.io
kind: NamespaceManagement
path: github.com/argoproj-labs/argocd-operator/api/v1beta1
version: v1beta1
version: "3"
12 changes: 12 additions & 0 deletions api/v1alpha1/argocd_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -841,6 +841,18 @@ type ArgoCDSpec struct {

// AggregatedClusterRoles will allow users to have aggregated ClusterRoles for a cluster scoped instance.
AggregatedClusterRoles bool `json:"aggregatedClusterRoles,omitempty"`

// NamespaceManagement defines the list of namespaces that Argo CD is allowed to manage.
NamespaceManagement []ManagedNamespaces `json:"namespaceManagement,omitempty"`
}

// NamespaceManagement defines the namespace management settings
type ManagedNamespaces struct {
// Name of the namespace or pattern to be managed
Name string `json:"name"`

// Whether the namespace can be managed by ArgoCD
AllowManagedBy bool `json:"allowManagedBy"`
}

const (
Expand Down
21 changes: 21 additions & 0 deletions api/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions api/v1beta1/argocd_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -942,6 +942,18 @@ type ArgoCDSpec struct {

// AggregatedClusterRoles will allow users to have aggregated ClusterRoles for a cluster scoped instance.
AggregatedClusterRoles bool `json:"aggregatedClusterRoles,omitempty"`

// NamespaceManagement defines the list of namespaces that Argo CD is allowed to manage.
NamespaceManagement []ManagedNamespaces `json:"namespaceManagement,omitempty"`
}

// NamespaceManagement defines the namespace management settings
type ManagedNamespaces struct {
// Name of the namespace or pattern to be managed
Name string `json:"name"`

// Whether the namespace can be managed by ArgoCD
AllowManagedBy bool `json:"allowManagedBy"`
}

const (
Expand Down
60 changes: 60 additions & 0 deletions api/v1beta1/namespacemanagement_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
/*
Copyright 2021.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package v1beta1

import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

// EDIT THIS FILE! THIS IS SCAFFOLDING FOR YOU TO OWN!
// NOTE: json tags are required. Any new fields you add must have json tags for the fields to be serialized.

// NamespaceManagementSpec defines the desired state of NamespaceManagement
type NamespaceManagementSpec struct {
ManagedBy string `json:"managedBy"`
}

// NamespaceManagementStatus defines the observed state of NamespaceManagement
type NamespaceManagementStatus struct {
// Conditions is an array of the NamespaceManagement's status conditions
Conditions []metav1.Condition `json:"conditions,omitempty"`
}

// +kubebuilder:object:root=true
// +kubebuilder:subresource:status

// NamespaceManagement is the Schema for the namespacemanagements API
type NamespaceManagement struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`

Spec NamespaceManagementSpec `json:"spec,omitempty"`
Status NamespaceManagementStatus `json:"status,omitempty"`
}

// +kubebuilder:object:root=true

// NamespaceManagementList contains a list of NamespaceManagement
type NamespaceManagementList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []NamespaceManagement `json:"items"`
}

func init() {
SchemeBuilder.Register(&NamespaceManagement{}, &NamespaceManagementList{})
}
117 changes: 117 additions & 0 deletions api/v1beta1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions argocd-app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: my-app
namespace: riz
spec:
destination:
namespace: naaz
server: https://kubernetes.default.svc
project: default
source:
path: guestbook
repoURL: https://github.com/Rizwana777/argocd-example-apps
targetRevision: master
syncPolicy:
automated:
prune: true
selfHeal: true

4 changes: 4 additions & 0 deletions common/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,4 +234,8 @@ const (

// ArgoCDKeyInstallationID is the configuration key for the installation ID.
ArgoCDKeyInstallationID = "installationID"

// ENABLE_MANAGED_NAMESPACE_FEATURE is an environment variable that controls whether
// the Namespace Management feature is enabled.
EnableManagedNamespace = "ENABLE_MANAGED_NAMESPACE_FEATURE"
)
Loading

0 comments on commit ed51534

Please sign in to comment.