-
Notifications
You must be signed in to change notification settings - Fork 878
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
Azure AKS with Container Registry and Keda example #1009
base: master
Are you sure you want to change the base?
Conversation
PR is now waiting for a maintainer to run the acceptance tests. Note for the maintainer: To run the acceptance tests, please comment /run-example-tests on the PR |
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.
This looks great, thank you! I left a few minor comments. Sorry it took us so long!
@@ -0,0 +1,21 @@ | |||
MIT License |
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.
I think we don't put license files in other examples
@@ -0,0 +1,21 @@ | |||
import pulumi |
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.
Could you please add a copyright line to every file?
# Copyright 2016-2021, Pulumi Corporation. All rights reserved.
addon_profiles={ | ||
}, | ||
agent_pool_profiles=[{ | ||
'count': config.node_count, |
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.
I'm curious if you'd be open to using the typed versions of arguments, similar to https://github.com/pulumi/examples/blob/master/azure-py-appservice-docker/__main__.py#L18
@@ -0,0 +1,7 @@ | |||
pulumi-azure-native>=1.0.0,<2.0.0 | |||
pulumi-azuread>=4.0.0,<5.0.0 | |||
pulumi-azure-native>=1.0.1, <2.0.0 |
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.
Looks like a duplicate?
I created an example of an AKS stack with an associated Container Registry, which is important for deploying applications that can't push images to Docker Hub.