Configuration Settings
General Settings
email
The email of the application owner.
email: "admin@example.com"
cluster
endpoint
: The public endpoint of your Kubernetes cluster. It will be used by Okteto when generatingKubeconfig
credentials for your users.
cluster:
endpoint: "https://52.30.32.1"
license
Okteto is free for small teams. You can manage up to 3 users with 3 namespaces each without having to provide a license.
license: XXXXX
Want to use Okteto with a bigger team? Let's talk
You can also use a secret to store the license.
subdomain
The domain (or subdomain) managed by Okteto.
Your Okteto instance will be available at okteto.$SUBDOMAIN
. All ingresses created by okteto will use it as well (e.g. https://app-$NAMESPACE.$SUBDOMAIN)
subdomain: "example.com"
After installation, we recommend that you create a DNS entry for *.$SUBDOMAIN
, pointing to the public address of your load balancer.
auth
Okteto supports using Bitbucket, GitHub, Google, or OpenID Connect as authentication providers.
You can also use a secret to store the sensitive part of these credentials.
bitbucket
: Use this group of settings when using Bitbucket OAauth as your authentication provider.
auth:
bitbucket:
enabled: true
clientId: OAauth Consumer Key
clientSecret: OAauth Consumer Secret
workspace: my-workspace
The workspace
field is optional. Only members of the workspace will be allowed to login into your Okteto instance. An empty workspace
field permits any user to log in.
github
: Use this group of settings when using GitHub OAuth as your authentication provider.
auth:
github:
enabled: true
clientId: clientID
clientSecret: clientSecret
organization: my-org
The organization
field is optional. Only members of the organization will be allowed to log in into your Okteto instance. An empty organization
field permits any user to log in.
google
: Use this group of settings when using Google OAuth as your authentication provider.
auth:
google:
enabled: true
clientId: clientid.apps.googleusercontent.com
clientSecret: clientSecret
openid
: Use this group of settings when using an OpenID Connect provider as your authentication provider.
auth:
openid:
enabled: true
clientId: clientid
clientSecret: clientSecret
group: my-group
endpoints:
issuer: https://your-provider
authorization: https://your-provider/authorization
mapping:
externalIDKey: nickname
nameKey: name
emailKey: email
pictureKey: picture
groupsKey: groups
The group
field is optional. Only members of the group will be allowed to log in into your Okteto instance. An empty group
field permits any user to log in.
The issuer
and authorization
endpoints must match the value returned in the provider config discovery.
The mapping
fields are optional. Use them to configure the mapping between Okteto's user attributes and the claim coming from your authentication provider.
Your provider needs to support the UserInfo endpoint in order to be used with Okteto. This authentication option follows the OpenID standard, and it has been validated with Okta, PingIdentity, and GitLab.
cloud
Okteto integrates with different cloud providers to store the registry images and generate certificates for your applications.
The credentials will be used by cert-manager when generating and renewing the wildcard certificate. The sensitive part of the credentials are not included in the configuration file. Instead, it is provided to Okteto via a secret.
azure
: Use this if your domain is managed by Azure DNS, and to use Azure Storage to store your private images.
cloud:
provider:
azure:
enabled: true
servicePrincipal: "Service Principal ID"
subscriptionID: "Azure Subscription ID"
tenantID: "Azure Tenant ID"
resourceGroupName: "Resource Group Name"
storage:
container: "Storage Container Name"
accountName: "Storage Account Name"
The storage setting will be used by the registry to pull and push images (if using cloud storage). This needs to be created before installing Okteto.
aws
: Use this if your domain is managed by Route53, and to use S3 to store your private images.
cloud:
provider:
aws:
enabled: true
bucket: "Bucket Name"
region: "AWS region"
iam:
accessKeyID: "IAM Access Key"
The bucket will be used by the registry to pull and push images (if using cloud storage). This needs to be created before installing Okteto.
Use the role
configuration below if your Route53 zone is managed by a separate AWS account than the one used to provision your Kubernetes cluster.
cloud:
provider:
aws:
enabled: true
bucket: "Bucket Name"
region: "AWS region"
iam:
enabled: false
role:
enabled: true
arn: "Role arn"
hostedZoneID: "zone id"
digitalocean
: Use this if your domain is managed by DigitalOcean, and to use DigitalOcean spaces to store your private images.
cloud:
provider:
digitalocean:
enabled: true
space:
name:
accessKeyID:
The space settings will be used by the registry to pull and push images (if using cloud storage). This needs to be created before installing Okteto.
gcp
: Use this if your domain is managed by Google Cloud DNS, and to use Google Cloud Storage to store your private images.
cloud:
provider:
gcp:
enabled: true
bucket: "Bucket Name"
project: "Project ID"
workloadIdentity:
enabled: false
The bucket settings will be used by the registry to pull and push images (if using cloud storage). This needs to be created before installing Okteto.
byo
: Use this if you're using a provider not currently supported by Okteto.
cloud:
provider:
byo:
enabled: true
issuerName:
issuerKind: Issuer
When using byo
you'll need to create a valid cert-manager issuer before installing Okteto, and configure your registry to use the file system for storage.
Advanced Cloud Scenarios
It is possible to use separate cloud providers for DNS than for storage if needed. Reach out to support, we're always happy to help!
Okteto Components
api
The API service. Account and Kubernetes credentials management, namespace creation, and sharing, deployment via the catalog, etc...
annotations
: Annotations to add to the API pods.labels
: Labels to add to the API pods.replicaCount
: The number of API pods. It defaults to 2.resources
: The resources for the API pods.
api:
replicaCount: 2
resources:
requests:
cpu: 100m
memory: 128Mi
autoscaler
The cluster autoscaler service. Disabled by default.
It instructs the Kubernetes cluster autoscaler to scale nodes if the real cpu/memory usage of a node is beyond the limits.
Use tolerations.devPool
to limit the autoscaler analysis to a subset of cluster nodes.
Requirements: cluster autoscaler and metrics server must be installed in your cluster.
annotations
: Annotations to add to the autoscaler pods.cpu.up
: Increase the cluster size when the CPU consumption is greater than or equal to this value. It defaults to 60 percent.cpu.down
: Decrease the cluster size when the CPU consumption is lesser than this value. It defaults to 40 percent.increment
: The number of new nodes to request when all the current nodes are overloaded. e.g. if this value is 3, the autoscaler will request 3 new nodes when all the cluster nodes are overloaded. It defaults to 1.labels
: Labels to add to the autoscaler pods.max
: Maximum number of nodes in the cluster. It defaults to 10. Zero means unlimited.memory.up
: Increase the cluster size when the Memory consumption is greater than or equal to this value. It defaults to 70 percent.memory.down
: Decrease the cluster size when the Memory consumption is lesser than this value. It defaults to 50 percent.min
: Minimum number of nodes in the cluster. It defaults to 1.nodePoolLabel
: The node label that identifies the node pool of the node. For example, the value in GKE iscloud.google.com/gke-nodepool
. In EKS the value iseks.amazonaws.com/nodegroup
. If set, the autoscaler scales each node pool independently.pods.up
: Increase the cluster size when the Pods in a node vs the max pods per node is greater than or equal to this value. It defaults to 90 percent.pods.down
: Decrease the cluster size when the Pods in a node vs the max pods per node is lesser than this value. It defaults to 80 percent.schedule
: How often, in seconds, the autoscaler analyzes if the cluster needs to be scaled. It defaults to 300.slackWebhook
: A slack webhook url to notify autoscaler events.volumes.up
: Increase the cluster size when the Volumes in a node vs the max volumes per node is greater than or equal to this value. It defaults to 90 percent.volumes.down
: Decrease the cluster size when the Volumes in a node vs the max volumes per node is lesser than this value. It defaults to 80 percent.
autoscaler:
enabled: false
schedule: 300
increment: 1
min: 1
max: 10
cpu:
up: 60
down: 40
memory:
up: 70
down: 50
pods:
up: 90
down: 80
volumes:
up: 90
down: 80
slackWebhook:
buildkit
The build service. It's used in combination with okteto build
to build containers directly in the cluster.
annotations
: Annotations to add to the buildkit pods.hpa.enabled
: Enable horizontal pod autoscaling for the buildkit pods. Disabled by default.hpa.min
: Minimum number of buildkit pods to keep running.hpa.max
: Maximum number of buildkit pods to scale to.hpa.cpu
: The amount of CPU utilization that will cause the HPA to scale the buildkit pods.labels
: Labels to add to the buildkit pods.podManagementPolicy
: The podManagementPolicy of the buildkit pods. Defaults toParallel
.replicaCount
: The number of buildkit pods. It defaults to 1.resources
: The resources for the buildkit pods.storage.class
: The storage class of the volume attached to every buildkit pod to persist the buildkit cache.storage.size
: The size of the volume attached to every buildkit pod to persist the buildkit cache.storage.cache
: The size of the buildkit cache to store image caches. It should be 30Gi smaller thanstorage.size
.
buildkit:
replicaCount: 1
storage:
class: ssd
size: 180Gi
cache: 150000
daemonset
The daemonset automatically configures every node of your cluster to work better with Okteto.
annotations
: Annotations to add to the daemonset pods.labels
: Labels to add to the daemonset pods.image
: Container image used by the daemonset pods.
frontend
The frontend service serves the web application.
annotations
: Annotations to add to the frontend pods.labels
: Labels to add to the frontend pods.replicaCount
: The number of frontend pods. It defaults to 2.resources
: The resources for the frontend pods.
frontend:
replicaCount: 2
resources:
requests:
cpu: 100m
memory: 128Mi
gc
The garbage collector service. It automatically scales idle applications to zero and deletes unused namespaces. Enabled by default.
annotations
: Annotations to add to the gc pods.labels
: Labels to add to the gc pods.scaleToZeroPeriod
: The duration, in hours, that an application or resource must be idle before the garbage collector scales it to zero. Set to zero to disable.deleteNamespacePeriod
: The duration, in days, that a namespace must be idle before the garbage collector deletes it. Set to zero to disable.slackWebhook
: If set, the garbage collector will send a notification when it scales a resource to zero or when it deletes a namespace.
gc:
enabled: true
scaleToZeroPeriod: 24
deleteNamespacePeriod: 15
slackWebhook:
installer
The jobs that deploy your development environments from Git.
activeDeadlineSeconds
: Maximum duration of the pipeline in seconds.gitSSHUser
: User to be used when cloning git repos using ssh.sshSecretName
: The name of the secret that contains the private key used when cloning git repos using ssh. If it doesn't exist, the key and the secret will be automatically generated by Okteto.
installer:
activeDeadlineSeconds: 1800
gitSSHUser: git
sshSecretName: "okteto-ssh"
registry
The private container registry.
annotations
: Annotations to add to the registry pods.ingress.annotations
: Annotations to add to the registry ingress. These annotations take precendence over the ones defined in the ingress section.ingress.tlsSecret
: TLS secret for the registry endpoint. If empty, okteto will default to the wildcard certificate created by Okteto.labels
: Labels to add to the registry pods.pullPolicy
: The security policy for image pulls. If set tocluster
, any Okteto user can pull any image from the registry. When set tonamespace
, only users with access to the namespace can pull images from the namespace. It defaults tonamespace
.replicaCount
: The number of registry pods. It defaults to 1.resources
: The resources for the registry pods.serviceAccountName
: The service account used by the registry. It defaults todefault
.storage
: The storage mechanism for the images.cloud.enabled
: Set this to true if you want to store the images using your cloud provider's block storage service (e.g. S3). It will use the values defined in thecloud
key. It's enabled by default.
registry:
storage:
cloud:
enabled: true
filesystem
: Set this to true if you want to store the images in PVC attached to the registry. This might limit your ability to scale up the registry, depending on the type of storage you are using. You can also customize thestorageClass
, thesize
of the volume, and even attach an existing volume claim viaclaimName
.
registry:
storage:
cloud:
enabled: false
filesystem:
enabled: true
persistence:
claimName: ""
accessMode: ReadWriteOnce
storageClass: ""
size: 40Gi
telemetry
You can enable or disable the telemetry job. The telemetry job "phones home" once a day with the following information:
- Number of managed users
- Number of managed namespaces
- Kubernetes Version and Platform
- A unique install ID
- Your license ID.
- The name of the authentication provider
- The name of the cloud provider
Okteto uses the information to help us better understand how our customers use Okteto, as well as to help us prioritize fixes and features. We don't share your information with anyone else.
telemetry:
enabled: true
If this configuration is disabled, Okteto CLI analytics are automatically disabled.
webhook
The webhook service. Ingress creation, generation of hostnames, enforcement of policies, etc...
annotations
: Annotations to add to the webhook pods.hostNetwork
: Enables or disables host networking for the webhook deployment. The default is false.labels
: Labels to add to the webhook pods.port
: Port sets the port used for the webhook deployment. The default is 443.replicaCount
: The number of webhook pods. It defaults to 2.resources
: The resources for the webhook pods.
Advanced Configuration
affinities
Apply default affinities to pods deployed in namespaces created by Okteto.
affinities:
devPool:
- weight: 10
preference:
matchExpressions:
- key: cloud.google.com/gke-preemptible
operator: In
values:
- "true"
In this case, pods deployed in namespaces created by Okteto will have a preferred affinity to land on preemptible nodes.
applications
repository
: The default application repository for every Okteto user. It defaults tohttps://apps.okteto.com
when not specified.
applications:
repository: "https://apps.okteto.com"
clusterRole
The role Okteto assigns to every user. If empty, Okteto will create a default role.
clusterRole: "role name"
convertLoadBalancedServices
Converts services with type LoadBalancer into ClusterIP and automatically creates an ingress. Enabled by default.
convertLoadBalancedServices:
enabled: true
devStorageClass
Uses the specified storage class for all persistent volume claims created when developers execute okteto up
. This setting will override any storage class defined on the Okteto manifest. Disabled by default.
storageClass
: The storage class enforced for persistent volume claims created byokteto up
.
devStorageClass:
enabled: true
storageClass: ebs-sc
There is only one exception where this storage class is overwritten. In case of having volume snapshots feature configured, if a storage class is required for the snapshots that storage class will have preference.
ingress
Configure default values for the ingress created by Okteto.
annotations
: The annotations to apply to all the ingresses created during the Okteto installation.class
: If set, Okteto will set this as theingress.class
of all ingresses managed by Okteto. This is useful if you have more than one ingress controller in your cluster.forceIngressClass
: If enabled, all ingresses deployed in namespaces managed by Okteto will have the ingress class defined iningress.class
(default:false
).ip
: The internal IP of the ingress. Pods will call the Okteto API and the Okteto Registry using this IP. Required if the Okteto API/Registry is exposed using an ingress not managed by Okteto.tlsSecret
: TLS secret for the ingress created by Okteto. If empty, okteto defaults to the wildcard certificate created by Okteto.
ingress:
annotations:
kubernetes.io/ingress.class: nginx
class: nginx
forceIngressClass: false
ip: ""
tlsSecret: ""
ingressLimits
Configure ingress connections limits for each public endpoint. Disabled by default.
connections
: Maximum parallel connections for each ingress.rps
: Maximum requests per second for each ingress.rpm
: Maximum requests per minute for each ingress.
ingressLimits:
enabled: true
connections: 40
rps: 40
rpm: 400
injectDevelopmentBinaries
Automatically inject kubectl, helm, and okteto binaries on every development environment, and on the git and helm deployment pipelines. This requires permissions to mount a host volume.
If this is disabled, you'll need to provide your own images in backend.installers.git.image
and backend.installers.helm.image
.
injectDevelopmentBinaries:
enabled: true
namespace
Annotation and label customizations for namespaces. The configured annotations and labels will be applied to each namespace created by Okteto. These annotations and labels are additional to the ones already applied by Okteto.
annotations
: Annotations applied to each namespace generated by Okteto.labels
: Labels applied to each namespace generated by Okteto.
namespace:
annotations:
custom.annotation/one: one
custom.annotation/two: two
labels:
custom.label/one: one
custom.label/two: two
networkPolicies
Configures network policies for each namespace to isolate network traffic. Disabled by default.
blockedCIDRs
: Outgoing traffic to any cidr on this list will be blocked by the network policy (optional).
networkPolicies:
enabled: true
blockedCIDRs:
- "169.254.169.254/32"
overrideFileWatchers
Overrides the default kernel values for file watchers in every node. Recommended if you're running databases, or if you plan on using "okteto up" on the cluster. This requires permission to mount and modify /proc values.
maxUserWatches
: The maximum number of allowed inotify watchers.maxMapCount
: The maximum number of memory map areas a process may have.aioMaxNR
: The maximum number of allowable concurrent IO requests.
overrideFileWatchers:
enabled: true
maxUserWatches: 10048576
maxMapCount: 262144
aioMaxNR: 1000000
overrideRegistryResolution
Overrides the registry hostname resolution to use internal IPs. This requires permission to mount and modify the cluster nodes' /etc/hosts file.
overrideRegistryResolution:
enabled: true
prepullImages
Pre-pull the git and helm installer images in all the nodes. This requires permission to mount the docker socket.
prepullImages:
enabled: true
privateRegistry
A list of private registries and its corresponding credentials. The kubelet will use them when pulling images:
privateRegistry:
hub:
url: https://index.docker.io/v1/
user: username1
password: password1
gcr:
url: https://gcr.io
token: dXNlcjM6cGFzc3dvcmQzCg==
aws:
url: 536194259215.dkr.ecr.us-east-1.amazonaws.com
user: $AWS_ACCESS_KEY_ID
password: $AWS_SECRET_ACCESS_KEY
Use
token
if your registry does not support username/password authentication (e.g. google registry).
If you are using an AWS private registry, Okteto takes care of refreshing docker credentials every 4 hours.
You can use this to configure a Docker Hub account for your cluster in order to avoid DockerHub's pull limits. Be careful, a credential misconfiguration could lead to an issue where kubelet cannot pull public images from Docker Hub. If this happens, follow these instructions to recover from this state.
pullAlways
Forces the PullAlways
image pull policy in the cluster. Enabled by default.
pullAlways:
enabled: true
quickstarts
The list of shortcuts to show in the "Deploy from Git Repository" dialog.
name
: Name to identify the quickstart.url
: Repository URL configured for the quickstart.branch
: Default branch to be considered for the configured quickstart repository.variables
: List of variables to be passed to the pipeline on deployment time.name
: Indicates the variable name.value
: Specifies the default value.options
: Specifies an enumeration of possible values.
default
: Flag to indicate ifurl
,branch
andvariables
fields will be automatically filled with configured values in the "Deploy from Git Repository" dialog.
quickstarts:
- name: "Movies Sample App"
url: https://github.com/okteto/movies
default: true
branch: main
variables:
- name: DB_HOST
value: mongodb
- name: THEME
options: ["dark", "light"]
- name: "GitHub"
url: https://github.com/
- name: "GitLab"
url: https://gitlab.com/
- name: "Bitbucket"
url: https://bitbucket.org/
quotas
Enables resource quotas at the namespace level.
resources
: Limits the number of resources that a user can create.maxNamespaces
: Maximum number of namespaces.maxPods
: Maximum number of pods per namespace.maxReplicationControllers
: Maximum number of replication controllers per namespace.maxSecrets
: Maximum number of secrets per namespace.maxConfigMaps
: Maximum number of config maps per namespace.maxPVCs
: Maximum number of persistent volume claims per namespace.maxVolumeSnapshots
: Maximum number of volume snapshots per namespace.maxIngresses
: Maximum number of ingresses per namespace
bandwidth
: Limits the incoming/outcoming bandwidth per pod. Requires using the Okteto NGINX Ingress Controller.ingress
: Maximum ingress bandwidth.egress
: Maximum egress bandwidth.up
: Limits the incoming/outgoing bandwidth per development container.ingress
: Maximum ingress bandwidth for a development containeregress
: Maximum egress bandwidth for a development container.
requests
: Limits the maximum resource requests per namespace.cpu
: Maximum CPU resource requests.memory
: Maximum memory resource requests.storage
: Maximum storage resource requests.
limits
: Limits the maximum resource limits per namespace.cpu
: Maximum CPU resource limits.memory
: Maximum memory resource limits.storage
: Maximum storage resource limits.
limitranges
: Configures the limit ranges of each namespace.max
: Configures the maximum resources per container.cpu
: Maximum CPU resource limits.memory
: Maximum memory resource limits.
requests
: Configures the default resource requests per container.limitRequestRatio
: If this value is different than zero, Okteto automatically sets the requests of each container to its limits divided by this value. It is useful to keep requests low in the cluster and make better usage of your infrastructure. Defaults to 1000.cpu
: Default CPU resource requests. Ignored iflimitRequestRatio
is different than zero.memory
: Default memory resource requests. Ignored iflimitRequestRatio
is different than zero.
limits
: Configures the default resource limits per container.cpu
: Default CPU resource limits.memory
: Default memory resource limits.
The default values are:
quotas:
resources:
enabled: false
maxNamespaces: "3"
maxPods: "20"
maxServices: "20"
maxReplicationControllers: "30"
maxSecrets: "50"
maxConfigMaps: "50"
maxPVCs: "10"
maxVolumeSnapshots: "10"
bandwidth:
enabled: false
ingress: "800M"
egress: "800M"
requests:
enabled: false
cpu: "1"
memory: "2Gi"
storage: "20Gi"
limits:
enabled: false
cpu: "4"
memory: "8Gi"
storage: "20Gi"
limitranges:
max:
enabled: false
cpu: "3"
memory: "12Gi"
requests:
enabled: true
limitRequestRatio: 1000
cpu: "100m"
memory: "0.2Gi"
limits:
enabled: true
cpu: "2"
memory: "8Gi"
secret
Labels and annotations to include in the secret created by the chart. Useful if you want to integrate with Vault or similar secret stores.
secret:
annotations:
your.custom.annotation: "10"
labels:
your.custom.label: "20"
tolerations
Indicates tolerations for the okteto components.
Define the label and taint okteto-node-pool
on your worker nodes to match these values.
oktetoPool
: Tolerations for the api, webhook, gc, autoscaler, ingress controller, and frontend services.buildPool
: Tolerations for the buildkit and registry services.devPool
: Tolerations for the pods deployed in namespaces created by okteto.
tolerations:
oktetoPool: okteto
buildPool: build
devPool: dev
For example, if you add the label okteto-node-pool:build
and the taint okteto-node-pool=build:NoSchedule
to a node, and you
are using buildPool: build
, the buildkit and registry pods are deployed to this node.
userDefinedNamespaces
Disable if you want to enforce using the username
as a suffix on namespaces and ingress hosts. Enabled by default.
userDefinedNamespaces: false
volumes
Allows you to specify different settings for volumes.
validate
: Section to configure volume validation.enabled
: Enables volume validation. Disabled by defaultsupportedStorageClasses
: List of supported storage classes.forceStorageClass
: Flag to specify if the storage class should be enforced in case of creating a volume with a non-supported storage class. If set, the first storage class specified onsupportedStorageClasses
will be the enforced value.supportedAccessModes
: List of supported access modes.
volumes:
validate:
enabled: true
supportedStorageClasses: ["standard", "standard-rwo"]
forceStorageClass: true
supportedAccessModes: ["ReadWriteOnce"]
volumeSnapshots
Enables users to initialize persistent volume claims with the contents of a preexisting volume snapshot.
This feature requires having a CSI driver installed in your cluster.
driver
: The name of the CSI driver used when creating snapshots.class
: The VolumeSnapshotClass of the volume snapshot.storageClass
: The storage class required by volumes initialized from snapshots (optional).enableNamespaceAccessValidation
: When enabled, only users that have access to the namespace where the volume snapshot is stored will be able to use it in their development environments. Default false.allowIDAnnotation
: Allow using your cloud provider's snapshot ID as the source of the data. Default true.
volumeSnapshots:
enabled: true
driver: ebs.csi.aws.com
class: snapclass
storageClass: ebs-sc
Add the dev.okteto.com/from-snapshot-id
annotation to any persistent volume claim to tell Okteto to initialize your persistent volume claim, as shown below:
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
annotations:
dev.okteto.com/from-snapshot-id: snap-xxxxxxxx
name: pvc-name
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10Gi
When a persistent volume claim resource is created, Okteto will import the snapshot in Kubernetes using a VolumeSnapshotContent and will set the source of your persistent volume claim to this VolumeSnapshotContent.
wildcardCertificate
Disable if you want to bring your own certificates and/or certificate authority. Enabled by default.
create
: If set to false, Okteto will not create the wildcard certificate automatically.duration
: The duration of the certificate. Ignored ifcreate
is set tofalse
.name
: The name of the secret where the certificate will be stored.privateCA.enabled
: Set to true when using a private certificate authority.privateCA.secret.name
: The name of the secret that stores the private certificate authority's certificate.privateCA.secret.key
: The key in the secret that stores the private certificate authority's certificate.
wildcardCertificate:
create: true
duration: 2160h0m0s
name: default-ssl-certificate
# if using a private CA, specify the name of the TLS secret that stores the certificate
privateCA:
enabled: false
secret:
name: "okteto-ca"
key: "ca.crt"
Dependencies
Okteto will automatically install NGINX Ingress Controller and Cert-Manager as part of the default installation, using the official Helm charts.
NGINX-Ingress
Use the ingress-nginx
keys in your configuration file to modify the configuration.
For example, to change the number of replicas, you'd need to add the following:
ingress-nginx:
controller:
replicaCount: 2
The full list of values is available here.
cert-manager
Use the cert-manager
keys in your configuration file to modify the configuration.
For example, to change the number of replicas, you'd need to add the following:
cert-manager:
replicaCount: 2
The full list of values is available here.