As discussed in the recent TOC meeting, we want to be sure the Ingresses
we list in the install instructions are ones we're confident will work
well with Knative, to avoid folks having a bad first experience.
Currently we don't have good (any) CI coverage for Gloo, so removing it
from the list for the moment until we do.
bumping knative.dev/hack de04b70...e35bcb8:
> e35bcb8 Rollback random GOBIN and make it relative to GOPATH again (# 73)
> 1c52c48 Skip GOPATH hacks if the repository is already on GOPATH (# 72)
Signed-off-by: Knative Automation <automation@knative.team>
* add base blog v0.23
Signed-off-by: Carlos Santana <csantana23@gmail.com>
* add blog release for v0.23
Signed-off-by: Carlos Santana <csantana23@gmail.com>
* add comment on rabbit release notes link
Signed-off-by: Carlos Santana <csantana23@gmail.com>
* dealing with my OCD to be consistent on the v in version
Signed-off-by: Carlos Santana <csantana23@gmail.com>
* fix typo container instead of pod
Signed-off-by: Carlos Santana <csantana23@gmail.com>
* using version number style
Signed-off-by: Carlos Santana <csantana23@gmail.com>
* address comments in review
Signed-off-by: Carlos Santana <csantana23@gmail.com>
* address review comments on removing "Version" when using vx.y.z format
Signed-off-by: Carlos Santana <csantana23@gmail.com>
* Update mkdocs.yml
* Update mkdocs.yml
* Update mkdocs.yml
* bringing back the purple
* Revert "bringing back the purple"
This reverts commit a6af055288.
* Removing reference to GKE-specific docs
* bash, resolving redirect warning for help
* replace all shells with bash across the entire project
* style guide conformance
* index -> readme
* serving link fixes while I'm at it
* fix serving links and redirects
* lint
The e2e tests haven't been passing for a little while and we want to
ensure users will have a good time using this Ingress with Knative before
listing it in the install guide.
* Update mkdocs.yml
* Update mkdocs.yml
* Update mkdocs.yml
* Adding help section
* link fix
* index.md -> README, redirect /help -> docs/help
* removing tab for Contributing
* moving community into docs just to see what happens
* moving it back because I came to my sense
* copying in existing style guide from website
* Removing Google Style guide since none of the current main docs contributors are from Google
* Moved existing Style Guide Braindump into MkDocs format
* moved Knative Style Guide
* lint
* adding guidance for K8s YAML
* small nit fix
* removing "just commit whatever" vibes
* Update docs/help/contributor/style-guide/README.md
Co-authored-by: Ashleigh Brennan <abrennan@redhat.com>
* add README for snippets
* bringing back the purple
* Revert "bringing back the purple"
This reverts commit a6af055288.
* addressing feedback for API Objects
* Adding content reuse README
* pushing "run" fixes
* Update documenting-code.md
* Update docs/help/contributor/style-guide/documenting-code.md
Co-authored-by: Ashleigh Brennan <abrennan@redhat.com>
* Update docs/help/contributor/style-guide/documenting-code.md
Co-authored-by: Ashleigh Brennan <abrennan@redhat.com>
* Update docs/help/contributor/style-guide/documenting-code.md
Co-authored-by: Ashleigh Brennan <abrennan@redhat.com>
* make the style guide adhere to the style guide lol
* Update documenting-code.md
* Update documenting-code.md
* adding bit about bash for CLI commands
Co-authored-by: Ashleigh Brennan <abrennan@redhat.com>
* Update mkdocs.yml
* Update mkdocs.yml
* Update mkdocs.yml
* bringing back the purple
* Revert "bringing back the purple"
This reverts commit a6af055288.
* Revert "Revert "bringing back the purple""
This reverts commit 181ba3d26a.
* Added the experimental features page
Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>
* Trailing whitespaces
Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>
* Added to the index
Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>
* suggestion by julz
Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>
* suggestion by ashleigh
Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>
* Reflected changes of https://github.com/knative/eventing/pull/5459
Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>
Fix compile error on golang 1.12 . It doesn't define the method "errors.Is" yet. The error message is as follows.
#golang.org/x/net/http2
src/golang.org/x/net/http2/client_conn_pool.go:305:6: undefined: errors.Is
golang 1.13+ defined the method "errors.Is", It will pass the compile when using golang 1.13+ instead.