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

feat: Introduce a new CR for managing Notifications Configuration #1264

Merged
Show file tree
Hide file tree
Changes from 1 commit
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
66 changes: 66 additions & 0 deletions api/v1alpha1/notificationsconfiguration_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
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 v1alpha1

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

func init() {
SchemeBuilder.Register(&NotificationsConfiguration{}, &NotificationsConfigurationList{})
}

//+kubebuilder:object:root=true

// NotificationsConfiguration is the Schema for the NotificationsConfiguration API
// +k8s:openapi-gen=true
// +kubebuilder:subresource:status
// +operator-sdk:csv:customresourcedefinitions:resources={{NotificationsConfiguration,v1beta1,""}}
// +operator-sdk:csv:customresourcedefinitions:resources={{ConfigMap,v1,""}}
type NotificationsConfiguration struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`

Spec NotificationsConfigurationSpec `json:"spec,omitempty"`
Status NotificationsConfigurationStatus `json:"status,omitempty"`
jaideepr97 marked this conversation as resolved.
Show resolved Hide resolved
}

//+kubebuilder:object:root=true

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

// NotificationsConfigurationSpec allows users to define the triggers, templates, services, context and
// subscriptions for the notifications
type NotificationsConfigurationSpec struct {
// Triggers define the condition when the notification should be sent and list of templates required to generate the message
// Recipients can subscribe to the trigger and specify the required message template and destination notification service.
Triggers map[string]string `json:"triggers,omitempty"`
// Templates are used to generate the notification template message
Templates map[string]string `json:"templates,omitempty"`
// Services are used to deliver message
Services map[string]string `json:"services,omitempty"`
// Subscriptions contain centrally managed global application subscriptions
Subscriptions map[string]string `json:"subscriptions,omitempty"`
}

// NotificationsConfigurationStatus defines the observed state of NotificationsConfiguration
type NotificationsConfigurationStatus struct {
NotificationsConfiguration string `json:"notificationsconfiguration,omitempty"`
}
jaideepr97 marked this conversation as resolved.
Show resolved Hide resolved
117 changes: 117 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.

15 changes: 15 additions & 0 deletions bundle/manifests/argocd-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1507,6 +1507,9 @@ spec:
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
version: v1beta1
- kind: NotificationsConfiguration
name: notificationsconfigurations.argoproj.io
version: v1alpha1
description: |
## Overview

Expand Down Expand Up @@ -1561,6 +1564,18 @@ spec:
spec:
clusterPermissions:
- rules:
- apiGroups:
- ""
resources:
- configmaps
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- ""
resources:
Expand Down
82 changes: 82 additions & 0 deletions bundle/manifests/argoproj.io_notificationsconfigurations.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.6.1
creationTimestamp: null
name: notificationsconfigurations.argoproj.io
spec:
group: argoproj.io
names:
kind: NotificationsConfiguration
listKind: NotificationsConfigurationList
plural: notificationsconfigurations
singular: notificationsconfiguration
scope: Namespaced
versions:
- name: v1alpha1
schema:
openAPIV3Schema:
description: NotificationsConfiguration is the Schema for the NotificationsConfiguration
API
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: NotificationsConfigurationSpec allows users to define the
triggers, templates, services, context and subscriptions for the notifications
properties:
services:
additionalProperties:
type: string
description: Services are used to deliver message
type: object
subscriptions:
additionalProperties:
type: string
description: Subscriptions contain centrally managed global application
subscriptions
type: object
templates:
additionalProperties:
type: string
description: Templates are used to generate the notification template
message
type: object
triggers:
additionalProperties:
type: string
description: Triggers define the condition when the notification should
be sent and list of templates required to generate the message Recipients
can subscribe to the trigger and specify the required message template
and destination notification service.
type: object
type: object
status:
description: NotificationsConfigurationStatus defines the observed state
of NotificationsConfiguration
properties:
notificationsconfiguration:
type: string
type: object
type: object
served: true
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
84 changes: 84 additions & 0 deletions config/crd/bases/argoproj.io_notificationsconfigurations.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@

---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.6.1
creationTimestamp: null
name: notificationsconfigurations.argoproj.io
spec:
group: argoproj.io
names:
kind: NotificationsConfiguration
listKind: NotificationsConfigurationList
plural: notificationsconfigurations
singular: notificationsconfiguration
scope: Namespaced
versions:
- name: v1alpha1
schema:
openAPIV3Schema:
description: NotificationsConfiguration is the Schema for the NotificationsConfiguration
API
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: NotificationsConfigurationSpec allows users to define the
triggers, templates, services, context and subscriptions for the notifications
properties:
services:
additionalProperties:
type: string
description: Services are used to deliver message
type: object
subscriptions:
additionalProperties:
type: string
description: Subscriptions contain centrally managed global application
subscriptions
type: object
templates:
additionalProperties:
type: string
description: Templates are used to generate the notification template
message
type: object
triggers:
additionalProperties:
type: string
description: Triggers define the condition when the notification should
be sent and list of templates required to generate the message Recipients
can subscribe to the trigger and specify the required message template
and destination notification service.
type: object
type: object
status:
description: NotificationsConfigurationStatus defines the observed state
of NotificationsConfiguration
properties:
notificationsconfiguration:
type: string
type: object
type: object
served: true
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
1 change: 1 addition & 0 deletions config/crd/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ resources:
- bases/argoproj.io_applications.yaml
- bases/argoproj.io_applicationsets.yaml
- bases/argoproj.io_appprojects.yaml
- bases/argoproj.io_notificationsconfigurations.yaml

#+kubebuilder:scaffold:crdkustomizeresource

Expand Down
Loading
Loading