generated from cloudoperators/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(kubernetes-operations): Make it a Greenhouse Plugin
- Loading branch information
1 parent
16a3db4
commit fa8a3a0
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and cobaltcore-dev contributors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
apiVersion: greenhouse.sap/v1alpha1 | ||
kind: PluginDefinition | ||
metadata: | ||
name: kubernetes-operations | ||
spec: | ||
version: 0.0.11 | ||
displayName: Kubernetes operations bundle | ||
description: Operations bundle for Kubernetes | ||
docMarkDownUrl: https://raw.githubusercontent.com/cloudoperators/kubernetes-operations/main/README.md | ||
icon: https://raw.githubusercontent.com/cloudoperators/kubernetes-operations/main/charts/kubernetes-operations/kubernetes-logo.png | ||
helmChart: | ||
name: kubernetes-operations | ||
repository: oci://ghcr.io/cloudoperators/kubernetes-operations/charts | ||
version: 0.0.11 | ||
options: | ||
- name: prometheusRules.create | ||
description: Create Prometheus rules | ||
required: false | ||
default: true | ||
type: bool | ||
- name: prometheusRules.ruleSelector | ||
description: Selector for Prometheus rules to be picked up by the Prometheus operator. List of key-value pairs. | ||
required: false | ||
type: list | ||
- name: prometheusRules.additionalRuleLabels | ||
description: Additional labels to be added every Prometheus rule. E.g support_group, service | ||
required: false | ||
type: map | ||
- name: dashboards.create | ||
description: Create Plutono dashboards | ||
required: false | ||
default: true | ||
type: bool | ||
- name: dashboards.dashboardSelector | ||
description: Selector for dashboards to be picked up by the Plutono. List of key-value pairs. | ||
required: false | ||
type: list |