-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to latest traefik CRD manifests for deploying v3.2.1 (#416)
- Loading branch information
1 parent
371729e
commit b4eb0b2
Showing
26 changed files
with
1,273 additions
and
3,736 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
localize: | ||
kustomize localize "https://github.com/traefik/traefik-helm-chart//traefik/crds?ref=v28.3.0" # Should be the last valid version for v3.0. Migrating to v3.1 comes with breaking changes | ||
kustomize localize "https://github.com/traefik/traefik-helm-chart//traefik/crds?ref=v33.1.0" |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- localized-crds-v32.0.0/traefik/crds/ | ||
- localized-crds-v33.1.0/traefik/crds/ |
4,185 changes: 526 additions & 3,659 deletions
4,185
...crds/gateway-standard-install-v1.1.0.yaml → ...crds/gateway-standard-install-v1.2.0.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
245 changes: 245 additions & 0 deletions
245
traefik/cluster/crds/localized-crds-v33.1.0/traefik/crds/hub.traefik.io_aiservices.yaml
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,245 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.14.0 | ||
name: aiservices.hub.traefik.io | ||
spec: | ||
group: hub.traefik.io | ||
names: | ||
kind: AIService | ||
listKind: AIServiceList | ||
plural: aiservices | ||
singular: aiservice | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: AIService is a Kubernetes-like Service to interact with a text-based | ||
LLM provider. It defines the parameters and credentials required to interact | ||
with various LLM providers. | ||
properties: | ||
apiVersion: | ||
description: |- | ||
APIVersion defines the versioned schema of this representation of an object. | ||
Servers should convert recognized schemas to the latest internal value, and | ||
may reject unrecognized values. | ||
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | ||
type: string | ||
kind: | ||
description: |- | ||
Kind is a string value representing the REST resource this object represents. | ||
Servers may infer this from the endpoint the client submits requests to. | ||
Cannot be updated. | ||
In CamelCase. | ||
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: The desired behavior of this AIService. | ||
properties: | ||
anthropic: | ||
description: Anthropic configures Anthropic backend. | ||
properties: | ||
model: | ||
type: string | ||
params: | ||
description: Params holds the LLM hyperparameters. | ||
properties: | ||
frequencyPenalty: | ||
type: number | ||
maxTokens: | ||
type: integer | ||
presencePenalty: | ||
type: number | ||
temperature: | ||
type: number | ||
topP: | ||
type: number | ||
type: object | ||
token: | ||
type: string | ||
required: | ||
- token | ||
type: object | ||
azureOpenai: | ||
description: AzureOpenAI configures AzureOpenAI. | ||
properties: | ||
apiKey: | ||
type: string | ||
baseUrl: | ||
type: string | ||
deploymentName: | ||
type: string | ||
model: | ||
type: string | ||
params: | ||
description: Params holds the LLM hyperparameters. | ||
properties: | ||
frequencyPenalty: | ||
type: number | ||
maxTokens: | ||
type: integer | ||
presencePenalty: | ||
type: number | ||
temperature: | ||
type: number | ||
topP: | ||
type: number | ||
type: object | ||
required: | ||
- apiKey | ||
- baseUrl | ||
- deploymentName | ||
type: object | ||
bedrock: | ||
description: Bedrock configures Bedrock backend. | ||
properties: | ||
model: | ||
type: string | ||
params: | ||
description: Params holds the LLM hyperparameters. | ||
properties: | ||
frequencyPenalty: | ||
type: number | ||
maxTokens: | ||
type: integer | ||
presencePenalty: | ||
type: number | ||
temperature: | ||
type: number | ||
topP: | ||
type: number | ||
type: object | ||
region: | ||
type: string | ||
systemMessage: | ||
type: boolean | ||
type: object | ||
cohere: | ||
description: Cohere configures Cohere backend. | ||
properties: | ||
model: | ||
type: string | ||
params: | ||
description: Params holds the LLM hyperparameters. | ||
properties: | ||
frequencyPenalty: | ||
type: number | ||
maxTokens: | ||
type: integer | ||
presencePenalty: | ||
type: number | ||
temperature: | ||
type: number | ||
topP: | ||
type: number | ||
type: object | ||
token: | ||
type: string | ||
required: | ||
- token | ||
type: object | ||
gemini: | ||
description: Gemini configures Gemini backend. | ||
properties: | ||
apiKey: | ||
type: string | ||
model: | ||
type: string | ||
params: | ||
description: Params holds the LLM hyperparameters. | ||
properties: | ||
frequencyPenalty: | ||
type: number | ||
maxTokens: | ||
type: integer | ||
presencePenalty: | ||
type: number | ||
temperature: | ||
type: number | ||
topP: | ||
type: number | ||
type: object | ||
required: | ||
- apiKey | ||
type: object | ||
mistral: | ||
description: Mistral configures Mistral AI backend. | ||
properties: | ||
apiKey: | ||
type: string | ||
model: | ||
type: string | ||
params: | ||
description: Params holds the LLM hyperparameters. | ||
properties: | ||
frequencyPenalty: | ||
type: number | ||
maxTokens: | ||
type: integer | ||
presencePenalty: | ||
type: number | ||
temperature: | ||
type: number | ||
topP: | ||
type: number | ||
type: object | ||
required: | ||
- apiKey | ||
type: object | ||
ollama: | ||
description: Ollama configures Ollama backend. | ||
properties: | ||
baseUrl: | ||
type: string | ||
model: | ||
type: string | ||
params: | ||
description: Params holds the LLM hyperparameters. | ||
properties: | ||
frequencyPenalty: | ||
type: number | ||
maxTokens: | ||
type: integer | ||
presencePenalty: | ||
type: number | ||
temperature: | ||
type: number | ||
topP: | ||
type: number | ||
type: object | ||
required: | ||
- baseUrl | ||
type: object | ||
openai: | ||
description: OpenAI configures OpenAI. | ||
properties: | ||
model: | ||
type: string | ||
params: | ||
description: Params holds the LLM hyperparameters. | ||
properties: | ||
frequencyPenalty: | ||
type: number | ||
maxTokens: | ||
type: integer | ||
presencePenalty: | ||
type: number | ||
temperature: | ||
type: number | ||
topP: | ||
type: number | ||
type: object | ||
token: | ||
type: string | ||
required: | ||
- token | ||
type: object | ||
type: object | ||
type: object | ||
served: true | ||
storage: true |
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
File renamed without changes.
Oops, something went wrong.