Skip to content

Commit

Permalink
Merge pull request #4 from ifireball/scaffold-tmpl-api
Browse files Browse the repository at this point in the history
feat(RHTAPWATCH-790): POC: Creating resurces from templates
  • Loading branch information
ifireball authored Mar 6, 2024
2 parents d6e3a4f + 4a34610 commit a87f85b
Show file tree
Hide file tree
Showing 19 changed files with 834 additions and 12 deletions.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Controller",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "./cmd/main.go"
}
]
}
20 changes: 20 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"cSpell.words": [
"apierrors",
"apimachinery",
"clientgoscheme",
"finalizers",
"healthz",
"konflux",
"kubebuilder",
"metav",
"metricsserver",
"OIDC",
"projctl",
"projctlv",
"projectdevelopmentstream",
"projectdevelopmentstreams",
"subresource",
"utilruntime"
]
}
10 changes: 10 additions & 0 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,14 @@ layout:
- go.kubebuilder.io/v4
projectName: project-controller
repo: github.com/konflux-ci/project-controller
resources:
- api:
crdVersion: v1
namespaced: true
controller: true
domain: konflux.dev
group: projctl
kind: ProjectDevelopmentStream
path: github.com/konflux-ci/project-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 2024.
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 projctl v1beta1 API group
// +kubebuilder:object:generate=true
// +groupName=projctl.konflux.dev
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: "projctl.konflux.dev", 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
)
71 changes: 71 additions & 0 deletions api/v1beta1/projectdevelopmentstream_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/*
Copyright 2024.
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"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
)

// 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.

// +kubebuilder:pruning:PreserveUnknownFields
type UnstructuredObj struct {
unstructured.Unstructured `json:",inline"`
}

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

// The name of the project this stream belongs to
Project string `json:"project,omitempty"`
Resources []UnstructuredObj `json:"resources,omitempty"`
}

// ProjectDevelopmentStreamStatus defines the observed state of ProjectDevelopmentStream
type ProjectDevelopmentStreamStatus 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

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

Spec ProjectDevelopmentStreamSpec `json:"spec,omitempty"`
Status ProjectDevelopmentStreamStatus `json:"status,omitempty"`
}

//+kubebuilder:object:root=true

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

func init() {
SchemeBuilder.Register(&ProjectDevelopmentStream{}, &ProjectDevelopmentStreamList{})
}
137 changes: 137 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.

13 changes: 12 additions & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ import (
"sigs.k8s.io/controller-runtime/pkg/log/zap"
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
"sigs.k8s.io/controller-runtime/pkg/webhook"

projctlv1beta1 "github.com/konflux-ci/project-controller/api/v1beta1"
"github.com/konflux-ci/project-controller/internal/controller"
//+kubebuilder:scaffold:imports
)

Expand All @@ -44,6 +47,7 @@ var (
func init() {
utilruntime.Must(clientgoscheme.AddToScheme(scheme))

utilruntime.Must(projctlv1beta1.AddToScheme(scheme))
//+kubebuilder:scaffold:scheme
}

Expand Down Expand Up @@ -72,7 +76,7 @@ func main() {

// if the enable-http2 flag is false (the default), http/2 should be disabled
// due to its vulnerabilities. More specifically, disabling http/2 will
// prevent from being vulnerable to the HTTP/2 Stream Cancelation and
// prevent from being vulnerable to the HTTP/2 Stream Cancellation and
// Rapid Reset CVEs. For more information see:
// - https://github.com/advisories/GHSA-qppj-fm5r-hxr3
// - https://github.com/advisories/GHSA-4374-p667-p6c8
Expand Down Expand Up @@ -118,6 +122,13 @@ func main() {
os.Exit(1)
}

if err = (&controller.ProjectDevelopmentStreamReconciler{
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "ProjectDevelopmentStream")
os.Exit(1)
}
//+kubebuilder:scaffold:builder

if err := mgr.AddHealthzCheck("healthz", healthz.Ping); err != nil {
Expand Down
Loading

0 comments on commit a87f85b

Please sign in to comment.