-
Notifications
You must be signed in to change notification settings - Fork 155
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
Upgrade website to Docsy 0.5.1 #531
base: master
Are you sure you want to change the base?
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: SayakMukhopadhyay The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Welcome @SayakMukhopadhyay! |
bba8ab8
to
dce4971
Compare
The biggest "change" in this upgrade is the fact that Bootstrap was updated to v5 by Docsy. This has led to changes to stylistic elements, mostly padding, margins, text sizes and some colours. I will try to document some of them here. (Left is the current site and right is the PR site)
These are all that I have found out. I am not too sure if there is a need to make the upgrade look pixel-accurate to the current site. Also, I have another branch that adds some changes that might need more discussion. These changes include
If the maintainers agree with the above changes, I will include them in this PR. |
/assign @SayakMukhopadhyay |
Thank you so much!! This will take awhile to review, sorry. |
Alright, I will bring in those changes from the other branch to make it easier to review. The config file will contain commented properties which are not needed but I have kept them for now to make it easier to review the YAML->TOML change. I can remove them before merging this PR once the format change itself is reviewed. |
This is amazing! Thank you so much. As mentioned, we'll need some time to review all this but, I greatly appreciate the time, effort, and energy. |
I have tried to make the commits as atomic as possible so if any changes are required, we can drop those commits. |
@SayakMukhopadhyay an aside: if you'd be willing to work on part of the equivalent change for https://k8s.io/, I can make time to pair up with you on that. I'm |
Makefile
Outdated
dependencies: | ||
npm ci | ||
cd themes/docsy/ && npm i |
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.
Does this need adapting for make container-server
?
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.
Yeah, the Makefile
needs to be updated. The dependencies
target itself is ok but needs to be added as dependencies on docker-server
, container-server
and production-build
. I have not added them as I wanted to know the sentiment regarding overhauling the Makefile
. There is a lot of repetition (like git submodule update --init --recursive --depth 1) that can be moved to its own target and used as a dependency. Let me know if its ok to do that and I will make the changes to this PR.
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.
Where possible, split out refactorings like that into their own (separate, smaller) PR.
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.
Which is why I haven't made any changes to the Makefile. The dependencies
target though is necessary for the latest Docsy and it was needed to get the preview-build
target to work and will be needed for the other targets. Essentially, that command creates 2 folders inside themes
, FortAwesome
and twbs
.
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.
Does this PR break local container previewing? If so, let's update the README and call out the issue in the PR description.
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.
By local container previewing, do you mean using make container-server
? It doesn't work in master
itself. It seems there is a permission issue on the /tmp
folder. The following error is thrown:
...
rsync: [receiver] chown "/tmp/src/themes/docsy/userguide/static/images/.version-banner.png.nPONje" failed: Operation not permitted (1)
rsync: [receiver] chown "/tmp/src/themes/docsy/userguide/static/images/.yes.png.iMPnje" failed: Operation not permitted (1)
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1338) [sender=3.3.0]
make: *** [Makefile:80: container-server] Error 23
This issue came up in WSL and I tried a fresh setup in codespaces and the issue is the same. It seems like the issue dooesn't happen if I remove this line
Line 83 in f42204c
--cap-drop=ALL \ |
But running the docker commands manually works as expected and so local container previewing still works.
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.
@sftim From your comment, I dunno how this convo got resolved but yeah, container-server
target in the makefile hasn't been updated. In fact, as mentioned in the convo, all the targets needs to be updated to handle the npm dependency. See this message to know my primary concerns.
There are multiple ways this can be approached.
- I can make the changes in the
Makefile
including adding the dependencies and can keep the refactoring for later. - I can add the dependencies and do the refactoring.
- I can do the refactoring in a separate PR to be merged first and fix the dependencies here so that you can get it working.
For now, for you to test things, I will push a commit adding the dependant target to container-server
.
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.
Also, the rsync permission issue is still there in my system. I have pushed a commit that should get container-server
working. If it doesn't try removing lines 87 and 88 (--cap-drop=ALL and --cap-drop=AUDIT_WRITE). Because I can't get things to work without removing them.
I don't know the real issue behind this as I assume it used to work.
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.
We only support container previewing on Linux and macOS host OSs; if you're using another environment, the support may not have been added yet.
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.
Hmm...this permission issue occurs on GitHub Codespaces too. But this PR as of now has a new commit that updates the container-server
target. Can you check if that works for your local host?
I will split this PR into 2 tomorrow.
hugo.yaml
Outdated
desc: Discussion and help from your fellow users | ||
- name: Twitter | ||
url: 'https://twitter.com/K8sContributors' | ||
icon: fa-brands fa-x-twitter # Updated the bird icon to the X icon |
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.
Omit this comment, but once you have, comment on this line in your own PR to call out the change.
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 have removed the comment from the file. Where do you want me to recomment? I have already called out this change in the last line of this PR's description.
Also, what about the other properties that I have commented in hugo.yaml
. I have kept those properties commented on to get some feedback, should I remove those properties altogether or should I uncomment them.
Could we add that front matter via the generator? Maybe in a separate PR (which I'd prefer to merge ahead of this one) |
I plan to work on it but I was thinking of doing it in a separate PR as the current workaround works for now. |
2bf59ca
to
381862d
Compare
/retitle Upgrade website to Docsy 0.5.1 |
@SayakMukhopadhyay: Re-titling can only be requested by trusted users, like repository collaborators. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Side note: the value of |
…ying over and override only the properties that are required
@sftim This PR has been modified to upgrade only upto 0.5.1. This PR also has an update to the I can squash this PR down to a commit if you want. Let me know. |
Makefile
Outdated
@echo -e "**** The use of docker-server is deprecated. Use container-server instead. ****" 1>&2 | ||
$(MAKE) container-server | ||
|
||
container-server: ## Run Hugo locally within a container, available at http://localhost:1313/ | ||
container-server: dependencies ## Run Hugo locally within a container, available at http://localhost:1313/ |
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 is actually:
-container-server: dependencies ## Run Hugo locally within a container, available at http://localhost:1313/
+container-server: dependencies ## Run npm locally on your host computer; then run Hugo locally within a container, available at http://localhost:1313/
I'd prefer to see the approach from k/website where NPM doesn't run locally; one of the benefits of a container is isolating less trusted code, whereas this approach executes it on the host.
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 have done it this way as other non-container targets would need to do this on the host anyway. Moreover, even container-server
executes git submodule update --init --recursive --depth 1
in the host which too could be done in the container. I am following that style in this PR.
This will need to be reworked anyway when we migrate from submodules to npm modules and I suggest that this change be done then.
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.
We can assume that people trust git
, but we should minimize the other code they need to trust.
I'm really reluctant to go the other way and widen what contributors must trust.
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.
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.
My only question now is for the render
and server
commands. Since these 2 commands run on the host anyway, do you think it's ok to add npm ci
to these commands? Or should the fact that npm ci
needs to be run manually be added to the docs and we leave it up to the folks who clone this repo to run npm
commands?
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.
Yes, those are fine to run on the host.
The container image doesn't build for me:
Try cloning your repo (you can pull from a filesystem clone to save bandwidth) and check that a container image build runs OK from that clean clone @SayakMukhopadhyay Once it does, feel free to squash to 1 or 2 commits. |
@sftim would it be ok, if I |
Sure, that's a really common technique for this situation. |
@sftim It's fixed. Do you think there is any value in checking in a CI step that the container builds and runs? |
One for a follow-up PR, and maybe best if we involve SIG Testing folks. |
Please squash this down to fewer commits; I think that's tidiest. |
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 is clear progress.
Make sure that, once you've built an image, make container-server
runs without an error.
Warnings are OK, but it's good to fix those too.
…eplaced --verbose with --logLevel info for hugo
Alright, the couple of warnings have been addressed. I will squash this PR to 3 commits, 1 containing all the upgrades, 1 containing the submodule -> npm change and the last containing the misc changes. |
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.
A local preview doesn't work for me. Try removing node_modules
before you test @SayakMukhopadhyay
postcss-cli | ||
COPY package*.json ./ | ||
|
||
RUN npm ci |
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 think this will create /src/node_modules
, but when the repository is mounted over that, the node modules will be shadowed / hidden.
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.
Welp....that's right. Maybe I should move the npm ci
into hack/gen-content.sh
.
Seems like k8s/website too has this issue.
This PR updates Docsy to the latest version available and makes it compatible to use with the latest Hugo.This PR was initially made to be upgraded to Docsy 0.10.0 but has since been modified to upgrade only upto 0.5.1. Further upgrade will be done in another PR. I have crossed out the items that was planned in this PR but won'
t happen in this PR either due to being fixed by another PR or being siloed to another PR.
In details, the following are the changes:
v0.10.0 tagv0.5.1 tagUpdated dependencies in thepackage.json
to the latestautoprefixer
andpostcss-cli
and addedpostcss
which is needed bypostcss-cli
now.Update the Hugo version in netlify to 0.134.3 andaddedNODE_VERSION = 20.16.0
env var to force netlify to use the current LTS of Node.js as older versions won't be able to compile native code in some of the dependencies. (If this value is configured on the infra side, we should look into either updating the value there and remove it from here, or remove it from infra and keep it here.)(WIP: right now, only added as a dependency of thepreview-build
target to get the CI in the PR to work)head.html
: it was the same as the theme except without the_internal/google_news.html
template. This template has since been removed.navbar.htm
l: it was the same as the theme except removing the minification of the navbar logo due to Hugo not havingtdewolff/minify >= 2.7.3
. The latest Hugo hasv2.20.37
so that removal is not needed.sidebar-html
: it was the same as the theme except wrapping anor
conditional method withcond
method to work with newer versions of Hugo which Docsy was not supporting. The latest Docsy version does support the latest version of Hugo and this wrapping is no longer needed.docs
&layout
: this layout was an exact copy from the theme with the only difference being thepage-meta-lastmod.html
partial was removed in the override. But the partial itself doesn't activate unless both.GitInfo
andSite.Params.github_repo
are truthy, which is not, hence the override is not needed.events
: this layout was unnecessary as all the content files in theevents
folder are usingtype: docs
in its front matter and so theevents
layout will never be used. And anyway,docs
layout andevents
layout were exactly the same.calendar
: updated to the currentdocs
layout provided by the theme while keeping the customization of including some scripts.community
: updated to the currentdocs
layout provided by the theme as it was the same before. (The only reason this layout is needed is because all generated files incontent/en/community
doesn't contain thetype
orlayout
in its front matter and thus will default totype: page
if acommunity
layout is not created.)resources
: updated to the currentdocs
layout provided by the theme as it was the same before. (The only reason this layout is needed is because of a generated filecontent/en/resource/release/index.md
which doesn't contain thetype
orlayout
in its front matter and thus will default totype: page
if aresources
layout is not created.)_variables.scss
has been updated from the theme. This change is introduced by docsy updating to bootstrap 5 in 0.7.0. This change introduces multiple changes to the default layout, including margins, padding, colors, font sizes among others._variables.scss
has been replace by_variables_project.scss
which is the recommended way to customize the variables of Docsy. This file only lists the properties that need to be customized and not everything in Docsy's_variables.scss
_styles_project.scss
has been added to include the CSS to make the copyright statement visible. This is the file that all customisations should go to.In the cover page, the color parameter is removed else it is setting the wrong text color.The Hugo config has been changed from TOML to YAML(This has been done in feat: move from a toml hugo config to a yaml one #556). ~~Some properties which are redundant have also been commented out. Also, since FontAwesome was upgraded to v6 in Docsy, the icon names have been updated. Also fixes Update X logo to 𝕏 on the website's footer #503 ~~Makefile
to not use anygit submodule
commands and update theDockerfile
to usenpm ci
to install the dependencies instead of installing them globally.