-
Notifications
You must be signed in to change notification settings - Fork 170
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
feat: new file structures that is more compatible with gitops approach #1930
base: main
Are you sure you want to change the base?
Conversation
const valuesPublic = omit(oldValues, secretPaths) | ||
const valuesSecrets = pick(oldValues, secretPaths) | ||
|
||
// FIXME migrate workloadValues folder and change ApplicationSet !! |
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.
@CasLubbers could you add migration for workloadValues?
Each team should have its own workloadValues
directory.
It is good to remember that workload values do not need to be processed by core while deploying.
|
||
export interface FileMap { | ||
envDir: string | ||
kind: |
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.
@merll Here are the proposed names for kinds
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.
From my understanding these are plural as we currently use them. But since Kubernetes CRDs usually are defined separately with singular and plural forms, maybe it would be better to indicate explicitly that there is no real singular form of these tuples of things. For example, it could be AplAlertSet
, AplBackupSet
etc.
No description provided.