Uses of Interface
org.cdk8s.plus24.ISecret
-
-
Uses of ISecret in org.cdk8s.plus24
Subinterfaces of ISecret in org.cdk8s.plus24 Modifier and Type Interface Description static interfaceISecret.Jsii$DefaultInternal default implementation forISecret.Classes in org.cdk8s.plus24 that implement ISecret Modifier and Type Class Description classBasicAuthSecretCreate a secret for basic authentication.classDockerConfigSecretCreate a secret for storing credentials for accessing a container image registry.static classISecret.Jsii$ProxyA proxy class which represents a concrete javascript instance of this type.classSecretKubernetes Secrets let you store and manage sensitive information, such as passwords, OAuth tokens, and ssh keys.classServiceAccountTokenSecretCreate a secret for a service account token.classSshAuthSecretCreate a secret for ssh authentication.classTlsSecretCreate a secret for storing a TLS certificate and its associated key.Methods in org.cdk8s.plus24 that return ISecret Modifier and Type Method Description static ISecretSecret. fromSecretName(software.constructs.Construct scope, String id, String name)Imports a secret from the cluster as a reference.default ISecretIngressTls. getSecret()Secret is the secret that contains the certificate and key used to terminate SSL traffic on 443.ISecretIngressTls.Jsii$Proxy. getSecret()ISecretSecretValue. getSecret()The secret.ISecretSecretValue.Jsii$Proxy. getSecret()Methods in org.cdk8s.plus24 that return types with arguments of type ISecret Modifier and Type Method Description List<ISecret>ServiceAccount. getSecrets()List of secrets allowed to be used by pods running using this service account.default List<ISecret>ServiceAccountProps. getSecrets()List of secrets allowed to be used by pods running using this ServiceAccount.List<ISecret>ServiceAccountProps.Jsii$Proxy. getSecrets()Methods in org.cdk8s.plus24 with parameters of type ISecret Modifier and Type Method Description voidServiceAccount. addSecret(ISecret secr)Allow a secret to be accessed by pods using this service account.static EnvFromEnv. fromSecret(ISecret secr)Selects a Secret to populate the environment variables with.static VolumeVolume. fromSecret(software.constructs.Construct scope, String id, ISecret secr)Populate the volume from a Secret.static VolumeVolume. fromSecret(software.constructs.Construct scope, String id, ISecret secr, SecretVolumeOptions options)Populate the volume from a Secret.IngressTls.BuilderIngressTls.Builder. secret(ISecret secret)Sets the value ofIngressTls.getSecret()SecretValue.BuilderSecretValue.Builder. secret(ISecret secret)Sets the value ofSecretValue.getSecret()Method parameters in org.cdk8s.plus24 with type arguments of type ISecret Modifier and Type Method Description ServiceAccount.BuilderServiceAccount.Builder. secrets(List<? extends ISecret> secrets)List of secrets allowed to be used by pods running using this ServiceAccount.ServiceAccountProps.BuilderServiceAccountProps.Builder. secrets(List<? extends ISecret> secrets)Sets the value ofServiceAccountProps.getSecrets()Constructors in org.cdk8s.plus24 with parameters of type ISecret Constructor Description EnvFrom(IConfigMap configMap, String prefix, ISecret sec)
-