-
Notifications
You must be signed in to change notification settings - Fork 3k
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
fix: Helm Docs makefile to be compatible with macOs #27495
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: ishuar <ishansharma887@gmail.com>
maintainer-s-little-helper
bot
added
the
dont-merge/needs-release-note-label
The author needs to describe the release impact of these changes.
label
Aug 14, 2023
github-actions
bot
added
the
kind/community-contribution
This was a contribution made by a community member.
label
Aug 14, 2023
8 tasks
qmonnet
added
release-note/misc
This PR makes changes that have no direct user impact.
needs-backport/1.12
needs-backport/1.14
This PR / issue needs backporting to the v1.14 branch
labels
Aug 15, 2023
maintainer-s-little-helper
bot
removed
dont-merge/needs-release-note-label
The author needs to describe the release impact of these changes.
labels
Aug 15, 2023
/test |
qmonnet
approved these changes
Aug 15, 2023
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.
Looks good, thanks a lot for this!
Here's a nice doc with differences between BSD sed (default on macOS) and GNU sed, for future reference. Indeed, the \+
syntax is not supported in the former.
I validated that the new syntax still works as expected on Linux.
qmonnet
added
the
area/documentation
Impacts the documentation, including textual changes, sphinx, or other doc generation code.
label
Aug 15, 2023
maintainer-s-little-helper
bot
added
the
ready-to-merge
This PR has passed all tests and received consensus from code owners to merge.
label
Aug 15, 2023
ishuar
added a commit
to ishuar/cilium
that referenced
this pull request
Aug 18, 2023
- Updated docs (used gnu-sed in macOS for helm-values.rst) permanent fix in cilium#27495 Signed-off-by: ishuar <ishansharma887@gmail.com>
joestringer
pushed a commit
that referenced
this pull request
Aug 21, 2023
- Updated docs (used gnu-sed in macOS for helm-values.rst) permanent fix in #27495 Signed-off-by: ishuar <ishansharma887@gmail.com>
tklauser
added
backport-pending/1.14
The backport for Cilium 1.14.x for this PR is in progress.
and removed
needs-backport/1.14
This PR / issue needs backporting to the v1.14 branch
labels
Aug 22, 2023
joestringer
added
backport-done/1.13
The backport for Cilium 1.13.x for this PR is done.
and removed
backport-pending/1.13
labels
Aug 25, 2023
tklauser
added
backport-done/1.12
The backport for Cilium 1.12.x for this PR is done.
and removed
backport-pending/1.12
labels
Aug 25, 2023
joestringer
added
backport-done/1.14
The backport for Cilium 1.14.x for this PR is done.
and removed
backport-pending/1.14
The backport for Cilium 1.14.x for this PR is in progress.
labels
Aug 25, 2023
This was referenced Sep 9, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/documentation
Impacts the documentation, including textual changes, sphinx, or other doc generation code.
backport-done/1.12
The backport for Cilium 1.12.x for this PR is done.
backport-done/1.13
The backport for Cilium 1.13.x for this PR is done.
backport-done/1.14
The backport for Cilium 1.14.x for this PR is done.
kind/community-contribution
This was a contribution made by a community member.
ready-to-merge
This PR has passed all tests and received consensus from code owners to merge.
release-note/misc
This PR makes changes that have no direct user impact.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
$(QUIET)$(SED) 's/^\( \* - \)\([[:print:]]\+\)$$/\1:spelling:ignore:
\2/' $@ > $(TMP_FILE_3)
where sed has incompatible syntax in macOS. This does not add:spelling:ignore:
string in between the $1 and $2 capture groups.More detailed discussion took place at:
securityContext
on spire server pod #27363 (comment)Fixes: #27122
Fixes: #26759
Change from
To
Click to view the simulation of the Issue in commands
Click to View the change working