main.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. openshift_cluster_autoscaler_name: cluster-autoscaler
  3. openshift_cluster_autoscaler_version: 4
  4. openshift_cluster_autoscaler_template_location: /tmp
  5. openshift_cluster_autoscaler_template_name: "{{ openshift_cluster_autoscaler_name }}"
  6. openshift_cluster_autoscaler_node_selector:
  7. type: infra
  8. openshift_cluster_autoscaler_state: present
  9. openshift_cluster_autoscaler_namespace: openshift-infra
  10. openshift_cluster_autoscaler_delete_config: True
  11. openshift_cluster_autoscaler_skip_nodes_local_storage: False
  12. openshift_cluster_autoscaler_serviceaccount: cluster-autoscaler
  13. openshift_cluster_autoscaler_region: us-east-1
  14. openshift_cluster_autoscaler_image: docker.io/openshift/kubernetes-autoscaler:v0.6.1
  15. openshift_cluster_autoscaler_cloud_provider: aws
  16. # AWS specific variables here
  17. openshift_cluster_autoscaler_aws_creds_name: aws-creds
  18. openshift_cluster_autoscaler_aws_secret_name: autoscaler-credentials
  19. openshift_cluster_autoscaler_aws_creds_path: "/var/run/secrets/{{ openshift_cluster_autoscaler_aws_creds_name }}/creds"
  20. openshift_cluster_autoscaler_aws_env_vars:
  21. - name: AWS_REGION
  22. value: "{{ openshift_cluster_autoscaler_region }}"
  23. - name: AWS_SHARED_CREDENTIALS_FILE
  24. value: "{{ openshift_cluster_autoscaler_aws_creds_path }}"
  25. ## End AWS vars ##
  26. openshift_cluster_autoscaler_env_vars: []
  27. openshift_cluster_autoscaler_node_groups:
  28. - min: 3
  29. max: 10
  30. name: "{{ openshift_cluster_autoscaler_node_group_name | default(openshift_clusterid ~ ' openshift compute') }}"