* Changed C# sample to use more lean and secure alpine as base image
* Updated sample to use .NET Core 3.0
* Fixed typos in README.md
* Fixed indentation
* Updated C# sample to .Net Core 3.1
* add instruction on how to use local docker registry
This commit documents this issue (https://github.com/knative/serving/issues/6101)
* Update docs/serving/getting-started-knative-app.md
Co-Authored-By: Dan Gerdesmeier <dangerd@google.com>
* edit to clarify this sample is deployed from gcr
* Update docs/serving/getting-started-knative-app.md
Co-Authored-By: RichieEscarez <rescarez@google.com>
* Update docs/serving/getting-started-knative-app.md
Co-Authored-By: RichieEscarez <rescarez@google.com>
* Update docs/serving/getting-started-knative-app.md
Co-Authored-By: RichieEscarez <rescarez@google.com>
* add line break
Co-authored-by: Dan Gerdesmeier <dangerd@google.com>
Co-authored-by: RichieEscarez <rescarez@google.com>
* Fix Ambassador install instructions to avoid panic
This commit installs Ambassador using ambassador-rbac.yaml instead
of ambassador-knative.yaml which will be deprecated soon.
ambassador-rbac.yaml contains the latest Ambassador install
manifests which have sufficient RBAC to update ingress resources
when required. ambassador-knative.yaml does not have these
permissions and hence Ambassador panics for anyone who follows
the instructions.
* Docs to install Ambassador in a separate namespace
This commit adds instructions to install Ambassador in a different
namespace. By default, Ambassador installs in "default" namespace.
The docs uses default template
(`install/kubernetes/helm/istio/values.yaml`) which enables mtls by
default on Istio-1.4+. It causes some problem like
https://github.com/knative/serving/issues/6254.
So, this patch sets `global.mtls.auto` to `false` for istio-lean and
clsuter-local-gateway installation.
* add the instruction to install cluster local gateway
* address coments
* update the link
* fix the test failure
* Update docs/install/installing-istio.md
Co-Authored-By: Sam O'Dell <31352624+samodell@users.noreply.github.com>
* Update docs/install/installing-istio.md
Co-Authored-By: Sam O'Dell <31352624+samodell@users.noreply.github.com>
* Update docs/install/installing-istio.md
Co-Authored-By: Sam O'Dell <31352624+samodell@users.noreply.github.com>
* Update docs/install/installing-istio.md
Co-Authored-By: Sam O'Dell <31352624+samodell@users.noreply.github.com>
Co-authored-by: Sam O'Dell <31352624+samodell@users.noreply.github.com>
* v0.11.0 serving, eventing, eventing-contrib API reference docs
* Update the broken generated knative.dev links
This commit is entirely generated by running the following command on
top of the generated Serving docs:
sed -i 's@https://knative.dev/serving@https://github.com/knative/serving@g' $(find -name '*.md' | xargs grep knative.dev/serving | cut -d':' -f 1 | uniq)
* Adjust API reference docs scripts for knative.dev
The API reference docs were failing to generate because they didn't
account for the change from github.com/knative/serving to
knative.dev/serving and similar for the eventing and eventing-contrib
repos.
* change to _IMPORT_PATH
* Secrets use GOOGLE_APPLICATION_CREDENTIALS as key (#1769)
* [DOC] Add alternative shell command to delete knative service (#1727)
* Update getting-started-knative-app.md
It is very useful when `kservice` are created via API and not with files.
* Delete the word "record" per review.
* Fix typo in microk8s doc (#1912)
* Fix the Subscription's apiVersion in debugging. (#1914)
Fix the Subscription's apiVersion in eventing debugging example.yaml file.
According to the api register in `https://github.com/knative/eventing/tree/master/pkg/apis/messaging`.
The Subscription Kind should be in messaging.knative.dev/v1alpha1, while the original file is "eventing.knative.dev/v1alpha1".
If apply the original file, the error happened "error: unable to recognize "example.yaml": no matches for kind "Subscription" in version "eventing.knative.dev/v1alpha1""
This update fix this bug.
* minor typo fix (#1932)
* fix small typo in sample READMEs (#1967)
* fix more broken links
* fix broken links
* update old readfile syntax
* revert dynamic var
* link to folder not readfile source
* fix bad markdown
* fix broken titles and links
* Add a SinkBinding sample.
This is largely derived from the ContainerSource docs, but
using SinkBinding and a CronJob.
* Fix the eventing-sources reference.
* Add licenses
* Removing old versions from docs
* Try fixing the broken list rending on the site
* add missing quotes
* use sentence style caps
* Try adding a weight to fix rendering
* try to fix poor list rendering (again)
* adding a template for new docs pages
* update to template
* feedback
* Apply suggestions from code review
Co-Authored-By: RichieEscarez <rescarez@google.com>
This example is intended to showcase how to start an event receiver as a Knative
Service, and then have that service either send a new event to a `$K_SINK` or
respond with it (e.g. for working with a Broker).
Once we're happy with this, we should broaden this to cover more languages.
* Cleanup Knative install versions page
1. Change to a command that returns just the release version
2. Move current methods of querying to the top of the page
3. Combine old methods into a single section
* Describe old steps rather than walk through as we expect very few
people to be running these older versions.
* edit for clarity
* Update docs/install/check-install-version.md
Co-Authored-By: RichieEscarez <rescarez@google.com>