-
Notifications
You must be signed in to change notification settings - Fork 16
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: add documentation for changes to import/export functionality #124
Conversation
@@ -50,6 +50,15 @@ For convenience, you can supply `--create-namespace` in order for Flipt to autom | |||
flipt import --namespace production --create-namespace flipt.yaml |
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 wonder if we should just remove the section on --create-namespace
and the section about how the namespace must exist now?
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.
@markphelps Yeah I battled with this. I am for it, just was curious how many people are version upgrade averse.
operations/import-export.mdx
Outdated
|
||
The `--namespaces` flag will accept a comma delimited list of namespaces from which you would like to export from. | ||
|
||
The `--all-namespaces flag is a boolean flag which tells export to export all namespaces to the single file you specify, or to standard out by default. |
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.
The `--all-namespaces flag is a boolean flag which tells export to export all namespaces to the single file you specify, or to standard out by default. | |
The `--all-namespaces` flag is a boolean flag that tells export to export all namespaces to the single file you specify, or to standard out by default. |
operations/import-export.mdx
Outdated
|
||
The `--namespace` flag is now deprecated, and two new flags now exist. | ||
|
||
The `--namespaces` flag will accept a comma delimited list of namespaces from which you would like to export from. |
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.
The `--namespaces` flag will accept a comma delimited list of namespaces from which you would like to export from. | |
The `--namespaces` flag will accept a comma-delimited list of namespaces from which you would like to export from. |
operations/import-export.mdx
Outdated
<Note> | ||
In [v1.28.0](https://github.com/flipt-io/flipt/releases/tag/v1.28.0), we have extended this functionality to support exporting state from multiple namespaces to a single YAML file. | ||
|
||
The `--namespace` flag is now deprecated, and two new flags now exist. |
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.
The `--namespace` flag is now deprecated, and two new flags now exist. | |
The `--namespace` flag is now deprecated. |
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 reminds me, we need to add this change to our https://github.com/flipt-io/flipt/blob/main/DEPRECATIONS.md file
Documentation for the new changes to the import/export functionality.
This change talks about the breaking changes in mdx Notes. The reason being that the previously existing documentation for import and export will still be relevant for some time due to people not being updated to the latest Flipt.
Completes FLI-617