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

chore: update package k8sgpt-operator #386

Open
wants to merge 1 commit into
base: main
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
23 changes: 23 additions & 0 deletions packages/k8sgpt-operator/v0.2.6+1/manifest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
apiVersion: v1
kind: Secret
metadata:
name: k8sgpt-secret
type: Opaque
data:
openai-api-key: ""
---
apiVersion: core.k8sgpt.ai/v1alpha1
kind: K8sGPT
metadata:
name: k8sgpt
spec:
ai:
enabled: true
model: gpt-3.5-turbo
backend: openai
secret:
name: k8sgpt-secret
key: openai-api-key
noCache: false
repository: ghcr.io/k8sgpt-ai/k8sgpt
version: v0.3.8
59 changes: 59 additions & 0 deletions packages/k8sgpt-operator/v0.2.6+1/package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# yaml-language-server: $schema=https://glasskube.dev/schemas/v1/package-manifest.json

name: k8sgpt-operator
iconUrl: https://avatars.githubusercontent.com/u/128535266?s=150
shortDescription: Automatic SRE Superpowers within your Kubernetes cluster
longDescription: Automatic SRE Superpowers within your Kubernetes cluster
defaultNamespace: k8sgpt-operator-system
helm:
chartName: k8sgpt-operator
chartVersion: 0.2.6
repositoryUrl: https://charts.k8sgpt.ai
references:
- label: ArtifactHub
url: https://artifacthub.io/packages/helm/k8sgpt/k8sgpt-operator
manifests:
- url: https://glasskube.github.io/packages/packages/k8sgpt-operator/v0.2.6+1/manifest.yaml
valueDefinitions:
openaiApiKey:
type: text
targets:
- patch:
op: add
path: /data/openai-api-key
valueTemplate: |
"{{ . | base64 }}"
resource:
apiGroup: v1
kind: Secret
name: k8sgpt-secret
namespace: k8sgpt-operator-system
constraints:
required: true
minLength: 50
pattern: sk-.+
anonymized:
type: boolean
defaultValue: "false"
targets:
- patch:
op: add
path: /spec/ai/anonymized
valueTemplate: "{{ . }}"
resource:
apiGroup: core.k8sgpt.ai/v1alpha1
kind: K8sGPT
name: k8sgpt
namespace: k8sgpt-operator-system
language:
type: text
defaultValue: english
targets:
- patch:
op: add
path: /spec/ai/language
resource:
apiGroup: core.k8sgpt.ai/v1alpha1
kind: K8sGPT
name: k8sgpt
namespace: k8sgpt-operator-system
1 change: 1 addition & 0 deletions packages/k8sgpt-operator/versions.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
latestVersion: v0.1.3+1
versions:
- version: v0.1.3+1
- version: v0.2.6+1
Loading