-
Notifications
You must be signed in to change notification settings - Fork 157
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
[doc] Fix doc of missing DataStore.type: FILEDB #4809
Conversation
Signed-off-by: t-kikuc <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #4809 +/- ##
==========================================
- Coverage 30.62% 28.88% -1.74%
==========================================
Files 227 317 +90
Lines 27207 40369 +13162
==========================================
+ Hits 8331 11662 +3331
- Misses 18216 27779 +9563
- Partials 660 928 +268 ☔ View full report in Codecov by Sentry. |
@@ -31,7 +31,7 @@ spec: | |||
|
|||
| Field | Type | Description | Required | | |||
|-|-|-|-| | |||
| type | string | Which type of data store should be used. Can be one of the following values<br>`FIRESTORE`, `MYSQL`. | Yes | | |||
| type | string | Which type of data store should be used. Can be one of the following values<br>`FIRESTORE`, `MYSQL`, `FILEDB`. | Yes | |
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.
Guys, this is an alpha feature so I don't really want to mention this directly on this page, wdyt?
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.
If you guys still want to mention it somewhere, I think we can add a new line to this page
👉 https://pipecd.dev/docs-v0.46.x/feature-status/#control-plane
Be sure to mark that Support file store as data store
feature as alpha feature 😉
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.
@t-kikuc please address this 👀
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.
Be sure to mark that Support file store as data store feature as alpha feature
That's good, i'll do so
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 did it
Base branch was modified
This reverts commit 7ef9cd5. Signed-off-by: t-kikuc <[email protected]>
Signed-off-by: t-kikuc <[email protected]>
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.
Thanks 🙏
@ffjlabo plz |
What this PR does / why we need it:
FILEDB
was missed asdatastore.type
in the doc although it's supported.FILEDB
is defined here:pipecd/pkg/model/datastore.go
Line 22 in 7ef9cd5