Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The following Knative components are currently available:

Knative is designed with different personas in mind:

![Diagram that displays different Audiences for Knative](./images/knative-audience.png)
![Diagram that displays different Audiences for Knative](./images/knative-audience.svg)

### Developers

Expand Down Expand Up @@ -106,3 +106,10 @@ Follow the links in this section to learn more about Knative.

* [Debugging application issues](./serving/debugging-application-issues.md)
* [Debugging performance issues](./serving/debugging-performance-issues.md)

---

Except as otherwise noted, the content of this page is licensed under the
[Creative Commons Attribution 4.0 License](https://creativecommons.org/licenses/by/4.0/),
and code samples are licensed under the
[Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0).
16 changes: 8 additions & 8 deletions build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ spec:
serviceAccountName: build-auth-example
source:
git:
url: https://github.com/sample/build-sample.git
url: https://github.com/example/build-example.git
revision: master
steps:
- name: ubuntu-example
image: ubuntu
args: ["ubuntu-build-example", "SECRETS.md"]
steps:
- image: gcr.io/sample-builders/build-sample
args: ['echo', 'hello', 'build']
steps:
- name: ubuntu-example
image: ubuntu
args: ["ubuntu-build-example", "SECRETS-example.md"]
steps:
- image: gcr.io/example-builders/build-example
args: ['echo', 'hello-example', 'build']
```


Expand Down
Loading