omnia_config.yml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. # Copyright 2020 Dell Inc. or its subsidiaries. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. ---
  15. # Password used for Slurm database.
  16. # The Length of the password should be atleast 8.
  17. # The password must not contain -,\, ',"
  18. mariadb_password: "password"
  19. # Kubernetes SDN network.
  20. # It can either be "calico" or "flannel".
  21. # Default value assigned is "calico".
  22. k8s_cni: "calico"
  23. # Kubernetes pod network CIDR.
  24. # Default value is "10.244.0.0/16"
  25. # Make sure this value does not overlap with any of the host networks.
  26. k8s_pod_network_cidr: "10.244.0.0/16"