Skip to content

Commit

Permalink
Bootstrap controller
Browse files Browse the repository at this point in the history
  • Loading branch information
bastjan committed Aug 18, 2022
1 parent 658e60a commit 31c4e71
Show file tree
Hide file tree
Showing 18 changed files with 594 additions and 1 deletion.
12 changes: 11 additions & 1 deletion PROJECT
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
domain: my.domain
domain: appuio.io
layout:
- go.kubebuilder.io/v3
projectName: scheduler-canary
repo: github.com/appuio/scheduler-canary-controller
resources:
- api:
crdVersion: v1
namespaced: true
controller: true
domain: appuio.io
group: monitoring
kind: SchedulerCanary
path: github.com/appuio/scheduler-canary-controller/api/v1beta1
version: v1beta1
version: "3"
36 changes: 36 additions & 0 deletions api/v1beta1/groupversion_info.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
Copyright 2022.
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 contains API Schema definitions for the monitoring v1beta1 API group
//+kubebuilder:object:generate=true
//+groupName=monitoring.appuio.io
package v1beta1

import (
"k8s.io/apimachinery/pkg/runtime/schema"
"sigs.k8s.io/controller-runtime/pkg/scheme"
)

var (
// GroupVersion is group version used to register these objects
GroupVersion = schema.GroupVersion{Group: "monitoring.appuio.io", Version: "v1beta1"}

// SchemeBuilder is used to add go types to the GroupVersionKind scheme
SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion}

// AddToScheme adds the types in this group-version to the given scheme.
AddToScheme = SchemeBuilder.AddToScheme
)
64 changes: 64 additions & 0 deletions api/v1beta1/schedulercanary_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/*
Copyright 2022.
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.

// SchedulerCanarySpec defines the desired state of SchedulerCanary
type SchedulerCanarySpec struct {
// INSERT ADDITIONAL SPEC FIELDS - desired state of cluster
// Important: Run "make" to regenerate code after modifying this file

// Foo is an example field of SchedulerCanary. Edit schedulercanary_types.go to remove/update
Foo string `json:"foo,omitempty"`
}

// SchedulerCanaryStatus defines the observed state of SchedulerCanary
type SchedulerCanaryStatus struct {
// INSERT ADDITIONAL STATUS FIELD - define observed state of cluster
// Important: Run "make" to regenerate code after modifying this file
}

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

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

Spec SchedulerCanarySpec `json:"spec,omitempty"`
Status SchedulerCanaryStatus `json:"status,omitempty"`
}

//+kubebuilder:object:root=true

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

func init() {
SchemeBuilder.Register(&SchedulerCanary{}, &SchedulerCanaryList{})
}
115 changes: 115 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.

50 changes: 50 additions & 0 deletions config/crd/bases/monitoring.appuio.io_schedulercanaries.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.9.2
creationTimestamp: null
name: schedulercanaries.monitoring.appuio.io
spec:
group: monitoring.appuio.io
names:
kind: SchedulerCanary
listKind: SchedulerCanaryList
plural: schedulercanaries
singular: schedulercanary
scope: Namespaced
versions:
- name: v1beta1
schema:
openAPIV3Schema:
description: SchedulerCanary is the Schema for the schedulercanaries 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: SchedulerCanarySpec defines the desired state of SchedulerCanary
properties:
foo:
description: Foo is an example field of SchedulerCanary. Edit schedulercanary_types.go
to remove/update
type: string
type: object
status:
description: SchedulerCanaryStatus defines the observed state of SchedulerCanary
type: object
type: object
served: true
storage: true
subresources:
status: {}
21 changes: 21 additions & 0 deletions config/crd/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# This kustomization.yaml is not intended to be run by itself,
# since it depends on service name and namespace that are out of this kustomize package.
# It should be run by config/default
resources:
- bases/monitoring.appuio.io_schedulercanaries.yaml
#+kubebuilder:scaffold:crdkustomizeresource

patchesStrategicMerge:
# [WEBHOOK] To enable webhook, uncomment all the sections with [WEBHOOK] prefix.
# patches here are for enabling the conversion webhook for each CRD
#- patches/webhook_in_schedulercanaries.yaml
#+kubebuilder:scaffold:crdkustomizewebhookpatch

# [CERTMANAGER] To enable cert-manager, uncomment all the sections with [CERTMANAGER] prefix.
# patches here are for enabling the CA injection for each CRD
#- patches/cainjection_in_schedulercanaries.yaml
#+kubebuilder:scaffold:crdkustomizecainjectionpatch

# the following config is for teaching kustomize how to do kustomization for CRDs.
configurations:
- kustomizeconfig.yaml
19 changes: 19 additions & 0 deletions config/crd/kustomizeconfig.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# This file is for teaching kustomize how to substitute name and namespace reference in CRD
nameReference:
- kind: Service
version: v1
fieldSpecs:
- kind: CustomResourceDefinition
version: v1
group: apiextensions.k8s.io
path: spec/conversion/webhook/clientConfig/service/name

namespace:
- kind: CustomResourceDefinition
version: v1
group: apiextensions.k8s.io
path: spec/conversion/webhook/clientConfig/service/namespace
create: false

varReference:
- path: metadata/annotations
7 changes: 7 additions & 0 deletions config/crd/patches/cainjection_in_schedulercanaries.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# The following patch adds a directive for certmanager to inject CA into the CRD
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
cert-manager.io/inject-ca-from: $(CERTIFICATE_NAMESPACE)/$(CERTIFICATE_NAME)
name: schedulercanaries.monitoring.appuio.io
16 changes: 16 additions & 0 deletions config/crd/patches/webhook_in_schedulercanaries.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# The following patch enables a conversion webhook for the CRD
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: schedulercanaries.monitoring.appuio.io
spec:
conversion:
strategy: Webhook
webhook:
clientConfig:
service:
namespace: system
name: webhook-service
path: /convert
conversionReviewVersions:
- v1
33 changes: 33 additions & 0 deletions config/rbac/role.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
creationTimestamp: null
name: manager-role
rules:
- apiGroups:
- monitoring.appuio.io
resources:
- schedulercanaries
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- monitoring.appuio.io
resources:
- schedulercanaries/finalizers
verbs:
- update
- apiGroups:
- monitoring.appuio.io
resources:
- schedulercanaries/status
verbs:
- get
- patch
- update
Loading

0 comments on commit 31c4e71

Please sign in to comment.