-
Notifications
You must be signed in to change notification settings - Fork 810
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
Generate the install.yaml from helm template
#171
Merged
markmandel
merged 1 commit into
googleforgames:master
from
markmandel:feature/gen-install.yaml
Apr 10, 2018
Merged
Generate the install.yaml from helm template
#171
markmandel
merged 1 commit into
googleforgames:master
from
markmandel:feature/gen-install.yaml
Apr 10, 2018
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
markmandel
added
the
area/build-tools
Development tooling. I.e. pretty much everything in the `build` directory.
label
Apr 10, 2018
Build Failed 😱 Build Id: 88166e8c-6e0a-40ba-8aae-51f2aff15a8f Build Logs
|
markmandel
force-pushed
the
feature/gen-install.yaml
branch
from
April 10, 2018 15:29
ad43130
to
8a1a85f
Compare
Build Failed 😱 Build Id: fd1815aa-1e46-4b3b-88a9-17866e69e144 Build Logs
|
cyriltovena
approved these changes
Apr 10, 2018
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
markmandel
force-pushed
the
feature/gen-install.yaml
branch
from
April 10, 2018 18:05
8a1a85f
to
81a4c2b
Compare
This implements a `make gen-install` target that will generate the install.yaml via `helm template`. This also extends `make test` to have a test to ensure that the `install.yaml` is always kept up to sync with the Helm chart, otehrwise the build will fail. This does remove the explicit permissions for RBAC, but we don't have a specific need for them right now, so I feel it's worth the sacrifice to ensure these two configuration options stay in sync. Blocks on googleforgames#170, Parent ticket: googleforgames#101
markmandel
force-pushed
the
feature/gen-install.yaml
branch
from
April 10, 2018 18:16
81a4c2b
to
cd85ffe
Compare
Build Succeeded 👏 Build Id: f2935806-8cd3-4e16-950e-e6bdc91d67f9 The following development artifacts have been built, and will exist for the next 30 days:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This implements a
make gen-install
target that will generate the install.yaml viahelm template
. This also extendsmake test
to have a test to ensure that theinstall.yaml
is always kept up to sync with the Helm chart, otehrwise the build will fail.This does remove the explicit
Secrets
for RBAC, but we don't have a specific need for them right now, so I feel it's worth the sacrifice to ensure these two configuration options stay in sync.Blocks on #170, Parent ticket: #101