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

[Draft]: [CSPL-2697] adding new CRD to support splunk apps #1339

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
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
13 changes: 13 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
domain: splunk.com
layout:
- go.kubebuilder.io/v3
Expand Down Expand Up @@ -109,4 +113,13 @@ resources:
kind: LicenseManager
path: github.com/splunk/splunk-operator/api/v4
version: v4
- api:
crdVersion: v1
namespaced: true
controller: true
domain: splunk.com
group: enterprise
kind: SplunkApp
path: github.com/splunk/splunk-operator/api/v4
version: v4
version: "3"
1 change: 0 additions & 1 deletion api/v3/zz_generated.deepcopy.go

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

75 changes: 75 additions & 0 deletions api/v4/splunkapp_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
/*
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 v4

import (
corev1 "k8s.io/api/core/v1"
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.

// SplunkAppSpec defines the desired state of SplunkApp
type SplunkAppSpec struct {
AppName string `json:"appName"`
ConfigFiles []ConfigFile `json:"configFiles"`
Version string `json:"version"`
}

// ConfigFile represents a Splunk configuration file
type ConfigFile struct {
ConfigFileName string `json:"configFileName"`
RelativePath string `json:"relativePath"`
ConfigMapRef corev1.ObjectReference `json:"configMapRef"`
}

// ConfigMapRef represents a reference to a ConfigMap
type ConfigMapRef struct {
Name string `json:"name"`
Namespace string `json:"namespace"`
}

// SplunkAppStatus defines the observed state of SplunkApp
type SplunkAppStatus struct {
// Define observed state of cluster here
}

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

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

Spec SplunkAppSpec `json:"spec,omitempty"`
Status SplunkAppStatus `json:"status,omitempty"`
}

// +kubebuilder:object:root=true

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

func init() {
SchemeBuilder.Register(&SplunkApp{}, &SplunkAppList{})
}
126 changes: 125 additions & 1 deletion api/v4/zz_generated.deepcopy.go

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

Loading
Loading