-
Notifications
You must be signed in to change notification settings - Fork 1
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
FinOps on EKS #33
base: main
Are you sure you want to change the base?
FinOps on EKS #33
Conversation
|
||
### Configuration changes for your cluster environment | ||
|
||
1. To control which Finops Stack components to install, edit the [enabled.yaml](./installation/config/common/enabled.yaml) file |
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.
For me, I just want a "default" set of things - coming to it fresh. Is what's enabled in the file in the repo a good starting point?
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.
Thats the intention, yes. everything in enabled.yaml
should be defaulted on for a "default" set of things. enabled.yaml
allows for people to toggle features on/off.
@@ -1,3 +1,4 @@ | |||
{{ if and .Values.dashboards }} |
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.
NIT:
{{ if and .Values.dashboards }} | |
{{ if .Values.dashboards }} |
and
would only be needed if there were multiple conditions, there is only one defined.
No description provided.