-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Remove Azure location requirement #344
Remove Azure location requirement #344
Conversation
This appears to have worked for me, but I'd like a 2nd look as it appears I also had some Azure permissions issues. I don't believe they're related, but want to be sure. |
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.
One nit. Otherwise LGTM. I ran through a full test using our nginx-example on AKS in canadacentral - looks good!
@@ -100,7 +100,6 @@ No parameters required. | |||
|
|||
| Key | Type | Default | Meaning | | |||
| --- | --- | --- | --- | | |||
| `location` | string | Required Field | *Example*: "Canada East"<br><br>See [the list of available locations][5] (note that this particular page refers to them as "Regions"). | |
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 remove link [5] below.
Instead of requiring the Ark admin to specify a "location" in the azure persistentVolumeProvider config (meaning only a single location is supported), get info about the disk (for its location) when creating a snapshot, and get info about the snapshot (for its location) when creating a disk from a snapshot. Signed-off-by: Andy Goldstein <andy.goldstein@gmail.com>
6389a71
to
331e0c2
Compare
@skriss fixed and rebased on top of latest master |
LGTM |
This fixes the PR vmware-tanzu#334 where one additional line was in the code. This was not exposed previously as we did not had downstream CI Lint jobs. Signed-off-by: Michal Pryc <mpryc@redhat.com> Co-authored-by: Michal Pryc <mpryc@redhat.com>
Instead of requiring the Ark admin to specify a "location" in the azure
persistentVolumeProvider config (meaning only a single location is
supported), get info about the disk (for its location) when creating a
snapshot, and get info about the snapshot (for its location) when
creating a disk from a snapshot.
Signed-off-by: Andy Goldstein andy.goldstein@gmail.com