-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for cluster-scoped trigger authentication, ClusterTrigger…
…Authentication. (#1452) This allows creating a single authentication for Keda, for scalers where that makes sense. Signed-off-by: Noah Kantrowitz <noah@coderanger.net> Co-authored-by: Zbynek Roubalik <726523+zroubalik@users.noreply.github.com>
- Loading branch information
1 parent
68a479c
commit 79a7407
Showing
9 changed files
with
397 additions
and
16 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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
153 changes: 153 additions & 0 deletions
153
config/crd/bases/keda.sh_clustertriggerauthentications.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,153 @@ | ||
|
||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.3.0 | ||
creationTimestamp: null | ||
name: clustertriggerauthentications.keda.sh | ||
spec: | ||
group: keda.sh | ||
names: | ||
kind: ClusterTriggerAuthentication | ||
listKind: ClusterTriggerAuthenticationList | ||
plural: clustertriggerauthentications | ||
shortNames: | ||
- cta | ||
- clustertriggerauth | ||
singular: clustertriggerauthentication | ||
scope: Cluster | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .spec.podIdentity.provider | ||
name: PodIdentity | ||
type: string | ||
- jsonPath: .spec.secretTargetRef[*].name | ||
name: Secret | ||
type: string | ||
- jsonPath: .spec.env[*].name | ||
name: Env | ||
type: string | ||
name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: ClusterTriggerAuthentication defines how a trigger can authenticate | ||
globally | ||
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: TriggerAuthenticationSpec defines the various ways to authenticate | ||
properties: | ||
env: | ||
items: | ||
description: AuthEnvironment is used to authenticate using environment | ||
variables in the destination ScaleTarget spec | ||
properties: | ||
containerName: | ||
type: string | ||
name: | ||
type: string | ||
parameter: | ||
type: string | ||
required: | ||
- name | ||
- parameter | ||
type: object | ||
type: array | ||
hashiCorpVault: | ||
description: HashiCorpVault is used to authenticate using Hashicorp | ||
Vault | ||
properties: | ||
address: | ||
type: string | ||
authentication: | ||
description: VaultAuthentication contains the list of Hashicorp | ||
Vault authentication methods | ||
type: string | ||
credential: | ||
description: Credential defines the Hashicorp Vault credentials | ||
depending on the authentication method | ||
properties: | ||
serviceAccount: | ||
type: string | ||
token: | ||
type: string | ||
type: object | ||
mount: | ||
type: string | ||
role: | ||
type: string | ||
secrets: | ||
items: | ||
description: VaultSecret defines the mapping between the path | ||
of the secret in Vault to the parameter | ||
properties: | ||
key: | ||
type: string | ||
parameter: | ||
type: string | ||
path: | ||
type: string | ||
required: | ||
- key | ||
- parameter | ||
- path | ||
type: object | ||
type: array | ||
required: | ||
- address | ||
- authentication | ||
- secrets | ||
type: object | ||
podIdentity: | ||
description: AuthPodIdentity allows users to select the platform native | ||
identity mechanism | ||
properties: | ||
provider: | ||
description: PodIdentityProvider contains the list of providers | ||
type: string | ||
required: | ||
- provider | ||
type: object | ||
secretTargetRef: | ||
items: | ||
description: AuthSecretTargetRef is used to authenticate using a | ||
reference to a secret | ||
properties: | ||
key: | ||
type: string | ||
name: | ||
type: string | ||
parameter: | ||
type: string | ||
required: | ||
- key | ||
- name | ||
- parameter | ||
type: object | ||
type: array | ||
type: object | ||
required: | ||
- spec | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
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
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
Oops, something went wrong.