domino logo
About DominoArchitecture
Kubernetes
Cluster RequirementsDomino on EKSDomino Kubernetes Version CompatibilityDomino on GKEDomino on AKSDomino on OpenShiftNVIDIA DGX in DominoDomino in Multi-Tenant Kubernetes ClusterEncryption in Transit
Installation
Installation ProcessConfiguration ReferenceInstaller Configuration ExamplesPrivate or Offline InstallationCustom Certificatesfleetcommand-agent release notes
Azure Deployments
Prepare for InstallationDeploy DominoProvision Infrastructure and Runtime Environment
Google Cloud Deployments
Prepare for InstallationProvision Infrastructure and Runtime EnvironmentDeploy Domino
Configuration
Central ConfigurationNotificationsFeature FlagsChange The Default Project For New UsersProject Stage ConfigurationDomino Integration With Atlassian Jira
Compute
Manage Domino Compute ResourcesHardware Tier Best PracticesModel Resource QuotasPersistent Volume ManagementAdding a Node Pool to your Domino ClusterRemove a Node from Service
Keycloak Authentication Service
Operations
Domino Application LoggingDomino MonitoringSizing Infrastructure for Domino
Data Management
Data in DominoData Flow In DominoExternal Data VolumesDatasets AdministrationSubmit GDPR Requests
User Management
RolesManage UsersLicense Usage Reporting
Environments
Environment Management Best PracticesCache Environment Images in EKSImages From Authenticated External Registries
Backup and Restore
Backup StructureBackup LocationCustomize BackupsRun a Manual, On-Demand BackupRestore backups
Control Center
Control Center OverviewExport Control Center Data with The API
Troubleshooting
domino logo
About Domino
Domino Data LabKnowledge BaseData Science BlogTraining
Admin Guide
>
Installation
>
Installer Configuration Examples

Installer Configuration Examples

EKS example

schema: "1.0"
name: $YOUR_ORGANIZATION_NAME
version: 5.1
hostname: $YOUR_DESIRED_APPLICATION_HOSTNAME
pod_cidr: "$YOUR_POD_CIDR"
ssl_enabled: true
ssl_redirect: true
request_resources: true
enable_network_policies: true
enable_pod_security_policies: true
global_node_selectors: {}
create_restricted_pod_security_policy: true
kubernetes_distribution: cncf
istio:
  enabled: false
  install: false
  cni: true
  namespace: istio-system
  nginx_annotations: true
 namespaces:
  platform:
    name: domino-platform
    annotations: {}
    labels:
      domino-platform: "true"
  compute:
    name: domino-compute
    annotations: {}
    labels:
      domino-compute: "true"
  system:
    name: domino-system
    annotations: {}
    labels: {}
ingress_controller:
  create: true
  gke_cluster_uuid: ""
  class_name: nginx
storage_classes:
  block:
    create: true
    name: dominodisk
    type: ebs
    access_modes:
    - ReadWriteOnce
    base_path: ""
    default: false
    parameters: {}
  shared:
    create: true
    name: dominoshared
    type: efs
    access_modes:
    - ReadWriteMany
    efs:
      region: "$YOUR_AWS_REGION"
      filesystem_id: "$YOUR_EFS_IDL::$YOUR_ACCESS_POINT_ID"
    nfs:
      server: ""
      mount_path: ""
      mount_options: []
    azure_file:
      storage_account: ""
blob_storage:
  projects:
    type: s3
    s3:
      region: ""
      bucket: ""
      sse_kms_key_id: ""
      access_key_id: ""
      secret_access_key: ""
    azure:
      account_name: ""
      account_key: ""
      container: ""
    gcs:
      bucket: ""
      service_account_name: ""
      project_name: ""
  logs:
    type: s3
    s3:
      region: ""
      bucket: ""
      sse_kms_key_id: ""
      access_key_id: ""
      secret_access_key: ""
    azure:
      account_name: ""
      account_key: ""
      container: ""
    gcs:
      bucket: ""
      service_account_name: ""
      project_name: ""
  backups:
    type: s3
    s3:
      region: ""
      bucket: ""
      sse_kms_key_id: ""
      access_key_id: ""
      secret_access_key: ""
    azure:
      account_name: ""
      account_key: ""
      container: ""
    gcs:
      bucket: ""
      service_account_name: ""
      project_name: ""
  default:
    type: s3
    s3:
      region: "$YOUR_AWS_REGION"
      bucket: "$YOUR_BUCKET_NAME"
      sse_kms_key_id: ""
      access_key_id: ""
      secret_access_key: ""
    azure:
      account_name: ""
      account_key: ""
      container: ""
    gcs:
      bucket: ""
      service_account_name: ""
      project_name: ""
    enabled: false
autoscaler:
  enabled: false
  cloud_provider: aws
  auto_discovery:
    cluster_name: $YOUR_EKS_CLUSTER_NAME
    tags: []
  groups: []
  aws:
    region: "$YOUR_AWS_REGION"
  azure:
    resource_group: ""
    subscription_id: ""
spotinst_controller:
  enabled: false
  token: ""
  account: ""
external_dns:
  enabled: false
  provider: aws
  domain_filters: []
  zone_id_filters: []
  txt_owner_id: ""
git:
  storage_class: dominodisk
email_notifications:
  enabled: false
  server: smtp.customer.org
  port: 465
  encryption: ssl
  from_address: domino@customer.org
  authentication:
    username: ""
    password: ""
monitoring:
  prometheus_metrics: true
  newrelic:
    apm: false
    infrastructure: false
    license_key: ""
helm:
  version: 3
  host: ""
  namespace: ""
  insecure: false
  username: ""
  password: ""
  skip_daemonset_validation: false
  daemonset_timeout: null
  tiller_image: ""
  prefix: ""
  cache_path: "/app/charts"
private_docker_registry:
  server: quay.io
  username: "$YOUR_DOMINO_PROVIDED_CREDENTIAL"
  password: "$YOUR_DOMINO_PROVIDED_CREDENTIAL"
internal_docker_registry:
  s3_override:
    region: ""
    bucket: ""
    sse_kms_key_id: ""
    access_key_id: ""
    secret_access_key: ""
  gcs_override:
    bucket: ""
    service_account_name: ""
    project_name: ""
  azure_blobs_override:
    account_name: ""
    account_key: ""
    container: ""
telemetry:
  intercom:
    enabled: false
  mixpanel:
    enabled: false
    token: ""
gpu:
  enabled: false
fleetcommand:
  enabled: false
  api_token: ''
teleport_kube_agent:
  enabled: false
  proxyAddr: teleport.domino.tech:443
  authToken: eeceeV4sohh8eew0Oa1aexoTahm3Eiha
  api_token: ""
teleport_kube_agent:
  enabled: false
  proxyAddr: teleport.domino.tech:443
  authToken: $TELEPORT_TOKEN
image_caching:
  enabled: true
Domino Data LabKnowledge BaseData Science BlogTraining
Copyright © 2022 Domino Data Lab. All rights reserved.