Guang Ya Liu
6ad310055b
Correct the file path for iot example. ( #898 )
2019-02-15 15:37:44 -08:00
Guang Ya Liu
18025f8109
Correct the file path of github source. ( #897 )
...
There is no need to use full path as the README and YAML files
are in the same directory.
2019-02-15 15:34:44 -08:00
Guang Ya Liu
9505e1a454
Updated document for gcp pubsub. ( #895 )
2019-02-15 15:31:44 -08:00
Guang Ya Liu
9b1b6e0c59
Clarify the file name that needs to be updated for k8s event source. ( #896 )
...
* Clarify the file name that needs to be updated for k8s event source.
* Updated file path for kubetcl.
2019-02-15 15:25:44 -08:00
Dan Gerdesmeier
53d7f688d4
Update metrics and ingress gateway documentation ( #802 )
...
* Update metrics and ingress gateway documentation
This change updates the metrics, logging, and ingress documentation with
information from documents in the Knative Serving repository. This is an
effort to centralize our user documentation in a single place.
This should allow us to remove the following files from Knative Serving
as they now contain either duplicative or out-dated information.
* https://github.com/knative/serving/blob/master/docs/telemetry.md
*
https://github.com/knative/serving/blob/master/docs/setting-up-custom-ingress-gateway.md
*
https://github.com/knative/serving/blob/master/docs/setting-up-ingress-static-ip.md
* Update serving/gke-assigning-static-ip-address.md
Co-Authored-By: dgerd <dangerd@google.com>
* Address comments
* Add TODO
2019-02-15 15:15:45 -08:00
Dougal Matthews
8ebd07438d
Correct spelling of privileged ( #893 )
2019-02-14 09:21:44 -08:00
mattmoor-sockpuppet
0728c5230b
Format markdown ( #894 )
...
Produced via: `prettier --write --prose-wrap=always $(find -name '*.md' | grep -v vendor | grep -v .github)`
2019-02-14 06:50:44 -08:00
sullis
a71f1b9ab4
sbt 1.2.8 ( #871 )
2019-02-13 09:47:43 -08:00
zxxa
27b74f6a39
Use kubectl logs verify the message ( #887 )
2019-02-13 08:41:43 -08:00
Nghia Tran
df7afb0856
Update cluster-local-route.md ( #889 )
2019-02-13 08:34:43 -08:00
mattmoor-sockpuppet
a5d6ea8f7e
Format markdown ( #884 )
...
Produced via: `prettier --write --prose-wrap=always $(find -name '*.md' | grep -v vendor | grep -v .github)`
2019-02-08 06:53:41 -08:00
Matt Moore
4037374784
Manually run prettier.io ( #880 )
...
* Manually run prettier.io
Trying to fix the stuff that hits prettier.io bugs.
* Fix prettier.io issues.
2019-02-07 16:04:41 -08:00
sebgoa
7dde4ff06b
removing mention of gitlab source being python ( #878 )
...
because it was a temporary prototype and is now currently written in go with kubebuilder.
2019-02-06 10:27:40 -08:00
Himanshu Pandey
3526e296b9
FIxed the dead link ( #877 )
2019-02-06 09:31:43 -08:00
Matthias Wessendorf
70885e7f15
adding the '.' to the generated doc... ( #869 )
2019-02-04 09:23:39 -08:00
Viktor Klang (√)
e36f0d806f
Addressing a kubectl typo in helloworld-scala README ( #870 )
2019-02-04 08:44:39 -08:00
Viktor Klang (√)
0aba63a9e3
Adding a Serving sample for Scala which uses Akka HTTP ( #848 )
2019-02-01 20:52:38 -08:00
Matthias Wessendorf
ed6b3bc7ab
Channel docs ( #851 )
...
* Adding generated list of Channels, like Sources
* It is Apache Kafka, not Kafka
* relocating a file and adding '.'
2019-02-01 10:11:37 -08:00
Brian McClain
541dcdc694
Clarify that a --sink flag will be generated only if one is not provided ( #601 )
2019-01-31 17:36:37 -08:00
Charlie Drage
f3a5c119da
Add monitoring link to knative with any k8s doc ( #810 )
...
Adds the missing monitoring link to the "knative with any k8s" document.
Closes https://github.com/knative/docs/issues/809
2019-01-31 14:32:37 -08:00
Steren
0d0f53a0ab
Node.js sample: Use index.js instead of app.js. ( #849 )
...
* Use index.js instead of app.js.
index.js is the more idiomatic for Node.js developers.
Indeed, it is the default value that npm start uses if no start script is provided.
* Update package.json
* Update README.md
* Update package.json
2019-01-31 10:35:37 -08:00
Adam Roberts
70ef4e642a
Add additional image repositories for ICP install ( #732 )
...
* Add additional image repositories for ICP install
May be a couple more so please don't merge yet! Following the process now and noticed this when applying the release-lite yaml.
* Formatting for ICP image policy inclusions
2019-01-30 15:09:37 -08:00
Dan Gerdesmeier
579de42707
Collapse documents from Knative Serving to docs repo ( #803 )
...
This collapses changes from application-deubgging-guide and
performance-investigation-guide in the Knative serving repo into the
debugging-application-issuses and debugging-performance-issues documents
in the documents repo.
2019-01-30 10:31:38 -08:00
Ahmet Alp Balkan
c7a30ed526
eventing/samples/gcp-pubsub: correct installation ( #829 )
...
* eventing/samples/gcp-pubsub: correct installation
My previous PR incorrectly stated users can install eventing sources with
"release-gcppubsub.yaml", but they still need to install "release.yaml" first,
so providing full command here.
Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
* Update eventing/samples/gcp-pubsub-source/README.md
Co-Authored-By: ahmetb <ahmetalpbalkan@gmail.com>
2019-01-30 10:28:38 -08:00
Ahmet Alp Balkan
c4d9e58d78
eventing/samples/pubsub: fix copy paste issue ( #828 )
...
* eventing/samples/pubsub: fix copy paste issue
See the line I changed, when I paste it to my zsh terminal, it thinks the
closing double-quote is missing. Turns out the !" is a special sequence in zsh
so it's better not to end a sample command like this.
Source: https://unix.stackexchange.com/questions/497328/zsh-thinks-unterminated-quote-if-preceded-by-exclamation-mark/497335#497335
Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
* Remove comma, match up quotation marks
2019-01-30 10:21:37 -08:00
Steren
996a43d378
Simplify Node.js package.json ( #825 )
...
* Simplify Node.js package.json
Since this is a Hello World, I do not think we need the `homepage`, `bugs` and `repository` attributes of package.json, but instead I suggest to keep it short in order to show the actual simplicity of the sample
* README missed the dependencies
2019-01-30 10:11:21 -08:00
Ahmet Alp Balkan
85159ad8a8
samples/gcp-pubsub: remove checked in secret ( #826 )
...
I accidentally checked this one in and it was missed during code review.
Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
2019-01-28 19:59:37 -08:00
Ahmet Alp Balkan
9689f68901
eventing/samples/gcp-pubsub-source: fix filename ( #824 )
...
Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
2019-01-28 16:56:36 -08:00
Ahmet Alp Balkan
715aebc2d0
eventing/samples/cronjob-source: fix broken cmd ( #823 )
...
Fixes #822 .
Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
2019-01-28 16:45:37 -08:00
RichieEscarez
66188886e1
add v0.1 release branch ( #821 )
...
* add v0.1 release branch
and provide some indication that the website is coming
* Update doc-releases.md
Co-Authored-By: RichieEscarez <rescarez@google.com>
* temporarily move the TBD link to the bottom
2019-01-28 16:08:37 -08:00
RichieEscarez
88a6f7fea6
Cut v0.2 branch + add v0.2.x tag ( #820 )
...
* Cut v0.2 branch + releases page
* Update doc-releases.md
Co-Authored-By: RichieEscarez <rescarez@google.com>
* Update doc-releases.md
Co-Authored-By: RichieEscarez <rescarez@google.com>
2019-01-28 15:17:37 -08:00
Averi Kitsch
0d4c5c2dac
Add Community Sample Directory ( #805 )
...
* Move extra helloworld samples
* Add documentation for community samples
* Update readmes
2019-01-28 14:08:37 -08:00
Johannes Scheuermann
d206063868
Correct spec documentation for GitHubSource ( #811 )
...
* Correct spec documentation for GitHubSource
* Use wording suggestion
* Revert "Use wording suggestion"
This reverts commit 8179816d21
.
2019-01-28 14:02:37 -08:00
Derek Wang
9bafcc933c
Fix cronjob sample bug ( #815 )
...
Use real message_dumper image instead of ko image path.
2019-01-28 09:09:36 -08:00
Derek Wang
5584da3656
Added cronjob sample ( #647 )
...
* Added cronjob sample
Give a sample about how to configure CronJobSource event.
* default namespace
* Refine the sample
2019-01-24 17:09:35 -08:00
Adam Ross
921aa488a9
serving/samples: remove EXPOSE directive from helloworld ( #644 )
...
* serving/samples: remove EXPOSE directive from helloworld
* serving/samples: update ENV PORT comment for clarified purpose
* serving/samples: update README for Dockerfile changes
2019-01-24 10:10:34 -08:00
Sam O'Dell
8b2eba433d
v0.3 updates for Gardener, ICP, Minikube, Minishift installs ( #775 )
...
* v0.3 updates for Gardener, ICP, Minikube, Minishift installs
* Update Knative-with-Gardener.md
2019-01-23 16:41:33 -08:00
Steren
5b5341f6f5
Use template literals in node sample ( #801 )
...
* Use template literals in node sample
* update README
2019-01-23 16:18:34 -08:00
Dr Nic Williams
4a61b75ce6
describe ClusterBuildTemplate and its use within a Build ( #604 )
2019-01-23 15:25:33 -08:00
Yanwei Guo
43bea1b3d5
update setting-up-a-logging-plugin.md ( #688 )
2019-01-23 10:16:35 -08:00
Zou Nengren
49494addfa
add default port for dart app ( #792 )
2019-01-23 10:12:34 -08:00
mattmoor-sockpuppet
1f82af8489
golang format tools ( #798 )
...
Produced via:
`gofmt -s -w $(find -path './vendor' -prune -o -type f -name '*.go' -print))`
`goimports -w $(find -name '*.go' | grep -v vendor)`
2019-01-22 16:23:33 -08:00
Theo Pack
7581b06da0
Add missing image tag for v0.3 ( #790 )
2019-01-22 12:44:33 -08:00
Steren
4448fd631a
Shell Hello World ( #753 )
...
* Shell Hello World
* Add README
* Create service.yaml
* Update README.md
* make linter happy
* Address feedback
* sample
* handle stder
* newline
* Update serving/samples/helloworld-shell/invoke.go
Co-Authored-By: steren <steren.giannini@gmail.com>
* indetation
* go sample
* Update serving/samples/helloworld-shell/README.md
Co-Authored-By: steren <steren.giannini@gmail.com>
* Update serving/samples/helloworld-shell/README.md
Co-Authored-By: steren <steren.giannini@gmail.com>
2019-01-22 11:50:22 -08:00
Sam O'Dell
1a99a80a3f
Tweaks to custom install for v0.3 ( #779 )
...
* Tweaks to custom install for v0.3
* More tweaks from comments
2019-01-18 17:30:32 -08:00
Adam Harwayne
b850378d5c
Debugging tutorial for Knative Eventing ( #785 )
...
* Initial work on a debugging tutorial for Knative Eventing.
* Address comments and small improvements.
2019-01-18 07:57:33 -08:00
Sam O'Dell
75195f43cb
Updates monitoring in installs; rewrite of ICP install ( #786 )
...
* Updates monitoring; rewrite of ICP install
* Update install/Knative-with-ICP.md
Co-Authored-By: samodell <31352624+samodell@users.noreply.github.com>
* Update install/Knative-with-ICP.md
Co-Authored-By: samodell <31352624+samodell@users.noreply.github.com>
* Update install/Knative-with-ICP.md
Co-Authored-By: samodell <31352624+samodell@users.noreply.github.com>
2019-01-17 15:53:31 -08:00
Steren
73e1ce86cd
Refactor Node.js sample to use arrow functions ( #749 )
2019-01-17 15:50:31 -08:00
Sam O'Dell
560d2e778a
Typo fix ( #787 )
2019-01-17 15:45:31 -08:00
Grant Rodgers
032563dd02
Document default channels for users and operators ( #723 )
...
* Document default channels for users and operators
Features described were added in
https://github.com/knative/eventing/pull/580 .
* Link to default-channels.md in eventing README
Adds a Configuration heading for topics unrelated to Getting Started.
* Briefly describe default channels in heading
Co-Authored-By: grantr <grantr@gmail.com>
* Update in response to feedback
Better README flow.
Explain why default channels can't have arguments.
2019-01-17 15:40:31 -08:00