Skip to content
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

Update README and documentation #2047

Merged
merged 3 commits into from
Jun 27, 2024
Merged

Conversation

ChenYi015
Copy link
Contributor

@ChenYi015 ChenYi015 commented Jun 6, 2024

🛑 Important:

Please open an issue to discuss significant work before you start. We appreciate your contributions and don't want your efforts to go to waste!

For guidelines on how to contribute, please review the CONTRIBUTING.md document.

Purpose of this PR

Provide a clear and concise description of the changes. Explain the motivation behind these changes and link to relevant issues or discussions.

Proposed changes:

  • Use mkdocs-material to generate static website
  • Add a new github action workflow for mkdocs to deploy website to github pages
  • Remove docs/*.md and keep only the docs/api-docs.md file.
  • Redirect links in README.md to the kubeflow website
  • Rename docs/who-is-using.md to ADOPTERS.md and sort the names in alphabetical order

Change Category

Indicate the type of change by marking the applicable boxes:

  • Bugfix (non-breaking change which fixes an issue)
  • Feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that could affect existing functionality)
  • Documentation update

Rationale

Checklist

Before submitting your PR, please review the following:

  • I have conducted a self-review of my own code.
  • I have updated documentation accordingly.
  • I have added tests that prove my changes are effective or that my feature works.
  • Existing unit tests pass locally with my changes.

Additional Notes

@ChenYi015 ChenYi015 force-pushed the docs branch 2 times, most recently from 87ba165 to fe159a8 Compare June 6, 2024 07:25
Copy link
Contributor

@vara-bonthu vara-bonthu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for setting up this static website. I initially considered using Docusaurus, but managing the documentation with MkDocs seems easier.

@vara-bonthu
Copy link
Contributor

/assign @yuchaoran2011

Copy link
Member

@andreyvelich andreyvelich left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for updating this Spark Operator docs @ChenYi015! This is great!

I think, we discussed before that we are planning to migrate Spark Operator docs to the Kubeflow website: #1928.
Similar to other Kubeflow components (Model Registry, Pipelines, Training Operator, etc.)
So users can get information about the components from the single place: https://www.kubeflow.org/docs/components/

Also, Kubeflow docs leads can help you with docs review, etc.

/cc @StefanoFioravanzo @hbelmiro @kubeflow/release-team

@thesuperzapper
Copy link
Member

@andreyvelich there is a small precedent for having an external website for some docs, namely the KFP SDK.

The main reason to consider using a separate site would be if there are going to be lots of different versions with significant changes between them (as we don't really have the ability to version each component separately on the Kubeflow website).

But obviously, we should try and make it work on the Kubeflow website, if possible.

@vara-bonthu
Copy link
Contributor

@andreyvelich What is the process for migrating documentation to the Kubeflow docs? Which repository should we raise a PR in? Do we have control over approving future documentation changes?

Since @ChenYi015 has done most of the work, it would be helpful to provide him with pointers so he can convert this into a Kubeflow Docs PR.

@thesuperzapper
Copy link
Member

@vara-bonthu you can make a PR on the website repo https://github.com/kubeflow/website

It's pretty much the same as MkDocs (uses markdown) but uses Hugo with the Docsy theme.

It should be very straightforward to just copy what has been proposed here into a new section under "components".

@andreyvelich
Copy link
Member

andreyvelich commented Jun 9, 2024

@andreyvelich there is a small precedent for having an external website for some docs, namely the KFP SDK.

@thesuperzapper Yes, I am aware of these docs. This is mostly done because KFP is using automation to generate SDK docs from their SDK client: https://github.com/kubeflow/pipelines/tree/master/docs. It is hard to auto generate SDK docs in kubeflow/website repo since we run SDK generator script in the source repo (e.g. pipelines, training-operator)

The main reason to consider using a separate site would be if there are going to be lots of different versions

Yes, this is valid point that components might need to be versioned separately from the website version. We discussed before with @StefanoFioravanzo that ideally docs for the components should live in their repo, and we should configure our Hugo website to render them. But we haven't got a chance to discuss how we can do it.

The main goal is to make sure our users can easily navigate in Kubeflow ecosystem to get desired value.

What is the process for migrating documentation to the Kubeflow docs? Which repository should we raise a PR in? Do we have control over approving future documentation changes?

You should raise a PR under content/en/docs/components/spark-operator website directory.
Yes, you will have full control to approve your PR, since we will create OWNERs file under this directory with Spark Operator maintainers.
E.g. like in Training Operator: https://github.com/kubeflow/website/blob/master/content/en/docs/components/training/OWNERS

@vara-bonthu
Copy link
Contributor

@ChenYi015 Are you looking to raise a PR to this repo https://github.com/kubeflow/website/tree/master/content/en/docs/components? Let me know if you need a help so that I can move the docs to the new repo.

@ChenYi015
Copy link
Contributor Author

@ChenYi015 Are you looking to raise a PR to this repo https://github.com/kubeflow/website/tree/master/content/en/docs/components? Let me know if you need a help so that I can move the docs to the new repo.

@vara-bonthu Sorry for the late response, I have raised a PR #3767 to move docs to kubeflow website .

@hbelmiro
Copy link

@ChenYi015 is this PR still needed since you opened a new PR to the website repo?

@andreyvelich
Copy link
Member

@ChenYi015 already opened this PR: kubeflow/website#3767

@hbelmiro
Copy link

@ChenYi015 already opened this PR: kubeflow/website#3767

@andreyvelich
Yeah, that's my point. Can't we close this in favor of kubeflow/website#3767?

@andreyvelich
Copy link
Member

That sounds good.
@ChenYi015 Do you want to modify this PR to update the README to redirect users to the Spark Operators docs on Kubeflow website: https://www.kubeflow.org/docs/components/ ?

@vara-bonthu
Copy link
Contributor

That sounds good. @ChenYi015 Do you want to modify this PR to update the README to redirect users to the Spark Operators docs on Kubeflow website: https://www.kubeflow.org/docs/components/ ?

That's a good point. We can do that once the docs are published under Kubeflow docs. Let's wait until this PR#3767 is merged

@ChenYi015 ChenYi015 changed the title Use mkdocs-material to generate docs and deploy to github pages Update README and documentation Jun 25, 2024
@ChenYi015 ChenYi015 requested a review from vara-bonthu June 25, 2024 08:11
Signed-off-by: Yi Chen <[email protected]>
@ChenYi015
Copy link
Contributor Author

That sounds good. @ChenYi015 Do you want to modify this PR to update the README to redirect users to the Spark Operators docs on Kubeflow website: https://www.kubeflow.org/docs/components/ ?

That's a good point. We can do that once the docs are published under Kubeflow docs. Let's wait until this PR#3767 is merged

@vara-bonthu I have redirected links in README to the kubeflow spark operator docs.

@andreyvelich
Copy link
Member

That sounds good. @ChenYi015 Do you want to modify this PR to update the README to redirect users to the Spark Operators docs on Kubeflow website: https://www.kubeflow.org/docs/components/ ?

That's a good point. We can do that once the docs are published under Kubeflow docs. Let's wait until this PR#3767 is merged

@vara-bonthu I have redirected links in README to the kubeflow spark operator docs.

Thank you @ChenYi015!
Do we want to remove these docs from Spark Operator GitHub repo since we have them on Kubeflow website: https://www.kubeflow.org/docs/components/spark-operator/ ?

@ChenYi015
Copy link
Contributor Author

That sounds good. @ChenYi015 Do you want to modify this PR to update the README to redirect users to the Spark Operators docs on Kubeflow website: https://www.kubeflow.org/docs/components/ ?

That's a good point. We can do that once the docs are published under Kubeflow docs. Let's wait until this PR#3767 is merged

@vara-bonthu I have redirected links in README to the kubeflow spark operator docs.

Thank you @ChenYi015! Do we want to remove these docs from Spark Operator GitHub repo since we have them on Kubeflow website: https://www.kubeflow.org/docs/components/spark-operator/ ?

@andreyvelich I had removed the docs except for docs/api-docs.md.

Copy link
Member

@andreyvelich andreyvelich left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for this huge effort @ChenYi015!
/lgtm
/assign @vara-bonthu @yuchaoran2011

@andreyvelich
Copy link
Member

andreyvelich commented Jun 25, 2024

/hold

For @vara-bonthu and @yuchaoran2011 review

Copy link
Contributor

@vara-bonthu vara-bonthu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: vara-bonthu

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@andreyvelich
Copy link
Member

@vara-bonthu @ChenYi015 Do we want to add the community meeting notes to the readme as I mentioned here: #2047 (comment) ?

@google-oss-prow google-oss-prow bot removed the lgtm label Jun 27, 2024
@ChenYi015
Copy link
Contributor Author

@vara-bonthu @ChenYi015 Do we want to add the community meeting notes to the readme as I mentioned here: #2047 (comment) ?

@andreyvelich I had added a link to the community call in the README.

Copy link
Member

@andreyvelich andreyvelich left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for this @ChenYi015!
/hold cancel
/lgtm

@google-oss-prow google-oss-prow bot merged commit 16cd35a into kubeflow:master Jun 27, 2024
7 checks passed
YanivKunda pushed a commit to YanivKunda/spark-operator that referenced this pull request Jul 4, 2024
* Update docs

Signed-off-by: Yi Chen <[email protected]>

* Remove docs and update README

Signed-off-by: Yi Chen <[email protected]>

* Add link to monthly community meeting

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: Yaniv Kunda <[email protected]>
@ChenYi015 ChenYi015 deleted the docs branch July 22, 2024 06:09
jbhalodia-slack pushed a commit to jbhalodia-slack/spark-operator that referenced this pull request Jul 22, 2024
* Update docs

Signed-off-by: Yi Chen <[email protected]>

* Remove docs and update README

Signed-off-by: Yi Chen <[email protected]>

* Add link to monthly community meeting

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>
jacobsalway pushed a commit to jacobsalway/spark-operator that referenced this pull request Jul 25, 2024
* Update docs

Signed-off-by: Yi Chen <[email protected]>

* Remove docs and update README

Signed-off-by: Yi Chen <[email protected]>

* Add link to monthly community meeting

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
google-oss-prow bot pushed a commit that referenced this pull request Jul 26, 2024
* Update README and documentation (#2047)

* Update docs

Signed-off-by: Yi Chen <[email protected]>

* Remove docs and update README

Signed-off-by: Yi Chen <[email protected]>

* Add link to monthly community meeting

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>

* Add PodDisruptionBudget to chart (#2078)

* Add PodDisruptionBudget to chart

Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>

* PR comments

Signed-off-by: Carlos Sánchez Páez <[email protected]>

---------

Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>

* Set topologySpreadConstraints

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README and increase patch version

Signed-off-by: jbhalodia-slack <[email protected]>

* Revert replicaCount change

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README after master merger

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README

Signed-off-by: jbhalodia-slack <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Co-authored-by: Yi Chen <[email protected]>
Co-authored-by: Carlos Sánchez Páez <[email protected]>
ChenYi015 pushed a commit to ChenYi015/spark-operator that referenced this pull request Aug 1, 2024
* Update README and documentation (kubeflow#2047)

* Update docs

Signed-off-by: Yi Chen <[email protected]>

* Remove docs and update README

Signed-off-by: Yi Chen <[email protected]>

* Add link to monthly community meeting

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>

* Add PodDisruptionBudget to chart (kubeflow#2078)

* Add PodDisruptionBudget to chart

Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>

* PR comments

Signed-off-by: Carlos Sánchez Páez <[email protected]>

---------

Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>

* Set topologySpreadConstraints

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README and increase patch version

Signed-off-by: jbhalodia-slack <[email protected]>

* Revert replicaCount change

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README after master merger

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README

Signed-off-by: jbhalodia-slack <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Co-authored-by: Yi Chen <[email protected]>
Co-authored-by: Carlos Sánchez Páez <[email protected]>
(cherry picked from commit 4108f54)
google-oss-prow bot pushed a commit that referenced this pull request Aug 1, 2024
* Update helm docs (#2081)

Signed-off-by: Carlos Sánchez Páez <[email protected]>
(cherry picked from commit eca3fc8)

* Update the process to build api-docs, generate CRD manifests and code (#2046)

* Update .gitignore

Signed-off-by: Yi Chen <[email protected]>

* Update .dockerignore

Signed-off-by: Yi Chen <[email protected]>

* Update Makefile

Signed-off-by: Yi Chen <[email protected]>

* Update the process to generate api docs

Signed-off-by: Yi Chen <[email protected]>

* Update the workflow to generate api docs

Signed-off-by: Yi Chen <[email protected]>

* Use controller-gen to generate CRD and deep copy related methods

Signed-off-by: Yi Chen <[email protected]>

* Update helm chart CRDs

Signed-off-by: Yi Chen <[email protected]>

* Update workflow for building spark operator

Signed-off-by: Yi Chen <[email protected]>

* Update README.md

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
(cherry picked from commit 779ea3d)

* Add topologySpreadConstraints (#2091)

* Update README and documentation (#2047)

* Update docs

Signed-off-by: Yi Chen <[email protected]>

* Remove docs and update README

Signed-off-by: Yi Chen <[email protected]>

* Add link to monthly community meeting

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>

* Add PodDisruptionBudget to chart (#2078)

* Add PodDisruptionBudget to chart

Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>

* PR comments

Signed-off-by: Carlos Sánchez Páez <[email protected]>

---------

Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>

* Set topologySpreadConstraints

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README and increase patch version

Signed-off-by: jbhalodia-slack <[email protected]>

* Revert replicaCount change

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README after master merger

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README

Signed-off-by: jbhalodia-slack <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Co-authored-by: Yi Chen <[email protected]>
Co-authored-by: Carlos Sánchez Páez <[email protected]>
(cherry picked from commit 4108f54)

* Use controller-runtime to reconsturct spark operator (#2072)

* Use controller-runtime to reconstruct spark operator

Signed-off-by: Yi Chen <[email protected]>

* Update helm charts

Signed-off-by: Yi Chen <[email protected]>

* Update examples

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
(cherry picked from commit 0dc641b)

---------

Co-authored-by: Carlos Sánchez Páez <[email protected]>
Co-authored-by: jbhalodia-slack <[email protected]>
YanivKunda pushed a commit to YanivKunda/spark-operator that referenced this pull request Aug 5, 2024
* Update README and documentation (kubeflow#2047)

* Update docs

Signed-off-by: Yi Chen <[email protected]>

* Remove docs and update README

Signed-off-by: Yi Chen <[email protected]>

* Add link to monthly community meeting

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>

* Add PodDisruptionBudget to chart (kubeflow#2078)

* Add PodDisruptionBudget to chart

Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>

* PR comments

Signed-off-by: Carlos Sánchez Páez <[email protected]>

---------

Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>

* Set topologySpreadConstraints

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README and increase patch version

Signed-off-by: jbhalodia-slack <[email protected]>

* Revert replicaCount change

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README after master merger

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README

Signed-off-by: jbhalodia-slack <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Co-authored-by: Yi Chen <[email protected]>
Co-authored-by: Carlos Sánchez Páez <[email protected]>
sigmarkarl pushed a commit to spotinst/spark-on-k8s-operator that referenced this pull request Aug 7, 2024
* Update docs

Signed-off-by: Yi Chen <[email protected]>

* Remove docs and update README

Signed-off-by: Yi Chen <[email protected]>

* Add link to monthly community meeting

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
sigmarkarl pushed a commit to spotinst/spark-on-k8s-operator that referenced this pull request Aug 7, 2024
* Update README and documentation (kubeflow#2047)

* Update docs

Signed-off-by: Yi Chen <[email protected]>

* Remove docs and update README

Signed-off-by: Yi Chen <[email protected]>

* Add link to monthly community meeting

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>

* Add PodDisruptionBudget to chart (kubeflow#2078)

* Add PodDisruptionBudget to chart

Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>

* PR comments

Signed-off-by: Carlos Sánchez Páez <[email protected]>

---------

Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>

* Set topologySpreadConstraints

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README and increase patch version

Signed-off-by: jbhalodia-slack <[email protected]>

* Revert replicaCount change

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README after master merger

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README

Signed-off-by: jbhalodia-slack <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Co-authored-by: Yi Chen <[email protected]>
Co-authored-by: Carlos Sánchez Páez <[email protected]>
jbhalodia-slack pushed a commit to jbhalodia-slack/spark-operator that referenced this pull request Oct 4, 2024
* Update docs

Signed-off-by: Yi Chen <[email protected]>

* Remove docs and update README

Signed-off-by: Yi Chen <[email protected]>

* Add link to monthly community meeting

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
jbhalodia-slack added a commit to jbhalodia-slack/spark-operator that referenced this pull request Oct 4, 2024
…ubeflow#2108)

* Update helm docs (kubeflow#2081)

Signed-off-by: Carlos Sánchez Páez <[email protected]>
(cherry picked from commit eca3fc8)

* Update the process to build api-docs, generate CRD manifests and code (kubeflow#2046)

* Update .gitignore

Signed-off-by: Yi Chen <[email protected]>

* Update .dockerignore

Signed-off-by: Yi Chen <[email protected]>

* Update Makefile

Signed-off-by: Yi Chen <[email protected]>

* Update the process to generate api docs

Signed-off-by: Yi Chen <[email protected]>

* Update the workflow to generate api docs

Signed-off-by: Yi Chen <[email protected]>

* Use controller-gen to generate CRD and deep copy related methods

Signed-off-by: Yi Chen <[email protected]>

* Update helm chart CRDs

Signed-off-by: Yi Chen <[email protected]>

* Update workflow for building spark operator

Signed-off-by: Yi Chen <[email protected]>

* Update README.md

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
(cherry picked from commit 779ea3d)

* Add topologySpreadConstraints (kubeflow#2091)

* Update README and documentation (kubeflow#2047)

* Update docs

Signed-off-by: Yi Chen <[email protected]>

* Remove docs and update README

Signed-off-by: Yi Chen <[email protected]>

* Add link to monthly community meeting

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>

* Add PodDisruptionBudget to chart (kubeflow#2078)

* Add PodDisruptionBudget to chart

Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>

* PR comments

Signed-off-by: Carlos Sánchez Páez <[email protected]>

---------

Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>

* Set topologySpreadConstraints

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README and increase patch version

Signed-off-by: jbhalodia-slack <[email protected]>

* Revert replicaCount change

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README after master merger

Signed-off-by: jbhalodia-slack <[email protected]>

* Update README

Signed-off-by: jbhalodia-slack <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
Signed-off-by: jbhalodia-slack <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Signed-off-by: Carlos Sánchez Páez <[email protected]>
Co-authored-by: Yi Chen <[email protected]>
Co-authored-by: Carlos Sánchez Páez <[email protected]>
(cherry picked from commit 4108f54)

* Use controller-runtime to reconsturct spark operator (kubeflow#2072)

* Use controller-runtime to reconstruct spark operator

Signed-off-by: Yi Chen <[email protected]>

* Update helm charts

Signed-off-by: Yi Chen <[email protected]>

* Update examples

Signed-off-by: Yi Chen <[email protected]>

---------

Signed-off-by: Yi Chen <[email protected]>
(cherry picked from commit 0dc641b)

---------

Co-authored-by: Carlos Sánchez Páez <[email protected]>
Co-authored-by: jbhalodia-slack <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants