Skip to content

Commit

Permalink
Add ChartPresetQuery api (#362)
Browse files Browse the repository at this point in the history
Signed-off-by: Tamal Saha <[email protected]>
  • Loading branch information
tamalsaha authored Sep 20, 2023
1 parent 224b4ab commit 273eefd
Show file tree
Hide file tree
Showing 149 changed files with 5,540 additions and 8,772 deletions.
45 changes: 45 additions & 0 deletions apis/meta/v1alpha1/chartpresetquery_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
Copyright AppsCode Inc. and Contributors
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"
chartsapi "x-helm.dev/apimachinery/apis/charts/v1alpha1"
)

const (
ResourceKindChartPresetQuery = "ChartPresetQuery"
ResourceChartPresetQuery = "chartpresetquery"
ResourceChartPresetQueries = "chartpresetqueries"
)

// +genclient
// +genclient:nonNamespaced
// +genclient:onlyVerbs=create
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

// +kubebuilder:object:root=true
// +kubebuilder:resource:path=chartpresetquery,singular=chartpresetquery,scope=Cluster
type ChartPresetQuery struct {
metav1.TypeMeta `json:",inline"`
// Request describes the attributes for the preset query.
// +optional
Request *chartsapi.ChartPresetFlatRef `json:"request,omitempty"`
// Response describes the attributes for the preset response.
// +optional
Response []chartsapi.ChartPresetValues `json:"response,omitempty"`
}
49 changes: 49 additions & 0 deletions apis/meta/v1alpha1/openapi_generated.go

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

1 change: 1 addition & 0 deletions apis/meta/v1alpha1/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ func Resource(resource string) schema.GroupResource {
// Adds the list of known types to api.Scheme.
func addKnownTypes(scheme *runtime.Scheme) error {
scheme.AddKnownTypes(SchemeGroupVersion,
&ChartPresetQuery{},
&ResourceDescriptor{},
&ResourceDescriptorList{},
&ResourceTableDefinition{},
Expand Down
38 changes: 38 additions & 0 deletions apis/meta/v1alpha1/zz_generated.deepcopy.go

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

64 changes: 64 additions & 0 deletions client/clientset/versioned/typed/meta/v1alpha1/chartpresetquery.go

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

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

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

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

5 changes: 5 additions & 0 deletions client/clientset/versioned/typed/meta/v1alpha1/meta_client.go

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

Loading

0 comments on commit 273eefd

Please sign in to comment.