-
Notifications
You must be signed in to change notification settings - Fork 233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move Azure terraform example to Standard SKU for IP addresses #3149
Conversation
Skipping CI for Draft Pull Request. |
Signed-off-by: Artiom Diomin <artiom@kubermatic.com>
d1a53a3
to
74ee24d
Compare
Signed-off-by: Artiom Diomin <artiom@kubermatic.com>
Signed-off-by: Artiom Diomin <artiom@kubermatic.com>
/test pull-kubeone-e2e-azure-default-stable-upgrade-containerd-external-from-v1.27.11-to-v1.28.7 |
/test pull-kubeone-e2e-azure-default-install-containerd-external-v1.27.11 |
Signed-off-by: Artiom Diomin <artiom@kubermatic.com>
3c8e5c2
to
fc17595
Compare
/test pull-kubeone-e2e-azure-default-stable-upgrade-containerd-external-from-v1.27.11-to-v1.28.7 |
/test pull-kubeone-e2e-azure-default-stable-upgrade-containerd-external-from-v1.27.11-to-v1.28.7 |
@kron4eg: The following tests failed, say
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
/test pull-kubeone-e2e-azure-default-stable-upgrade-containerd-external-from-v1.28.7-to-v1.29.2 |
Signed-off-by: Artiom Diomin <artiom@kubermatic.com>
5ea88e8
to
15f4e71
Compare
/cc @xmudrii |
variable "ip_sku" { | ||
default = "Basic" | ||
description = "SKU to use for IP addresses" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should leave this variable but default it to Standard
so users with existing setups can eventually migrate to the new Terraform configs if they want.
resource "azurerm_public_ip" "lbip" { | ||
count = local.loadbalancer_count | ||
|
||
name = "${var.cluster_name}-lbip" | ||
location = var.location | ||
resource_group_name = azurerm_resource_group.rg.name | ||
allocation_method = "Dynamic" | ||
sku = var.ip_sku | ||
allocation_method = "Static" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we also add a variable for this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Problem is, it doesn't work with Basic anymore. So does it make sense to parametrize it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
/approve
LGTM label has been added. Git tree hash: f794a2986dcebcf24696e63cde158250fbb93eb0
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: xmudrii The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
What this PR does / why we need it:
This fixes broken LoadBalancer functionality in azure CCM (it refuses to add Basic IPs into the LB)
Which issue(s) this PR fixes:
Fixes #
What type of PR is this?
/kind regression
Special notes for your reviewer:
Does this PR introduce a user-facing change? Then add your Release Note here:
Documentation: