Skip to content

Commit

Permalink
Update openstack infra
Browse files Browse the repository at this point in the history
Remove insecure to not trust self signed certs anymore.
Add max retries to repeat failed or throttled operations.
  • Loading branch information
dkistner committed Feb 3, 2021
1 parent f16d56e commit 07c67e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/internal/openstack-infra/templates/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ provider "openstack" {
region = "{{ required "openstack.region is required" .Values.openstack.region }}"
user_name = var.USER_NAME
password = var.PASSWORD
insecure = true
max_retries = "{{ required "openstack.maxApiCallRetries is required" .Values.openstack.maxApiCallRetries }}"
}

//=====================================================================
Expand Down
1 change: 1 addition & 0 deletions charts/internal/openstack-infra/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ openstack:
tenantName: kubernetes
region: eu-de-1
floatingPoolName: my-pool
maxApiCallRetries: 10

create:
router: true
Expand Down

0 comments on commit 07c67e7

Please sign in to comment.