@@ -14,19 +14,36 @@ installed.
1414
1515# Deploying
1616
17- ## From Release v0.2.0
17+ ## From Release v0.3.0 - v1alpha Knative Serving
1818
1919To install into the ` default ` namespace,
2020
2121``` shell
22- kubectl apply -f https://github.com/n3wscott/graph/releases/download/v0.2 .0/release.yaml
22+ kubectl apply -f https://github.com/n3wscott/graph/releases/download/v0.3 .0/release-alpha .yaml
2323```
2424
2525To install into a ` test ` namespace,
2626
2727``` shell
2828export NAMESPACE=test # <-- update test to your target namespace.
29- curl -L https://github.com/n3wscott/graph/releases/download/v0.2.0/release.yaml \
29+ curl -L https://github.com/n3wscott/graph/releases/download/v0.3.0/release-alpha.yaml \
30+ | sed " s/default/${NAMESPACE} /" \
31+ | kubectl apply -n $NAMESPACE --filename -
32+ ```
33+
34+ ## From Release v0.3.0 - v1beta Knative Serving
35+
36+ To install into the ` default ` namespace,
37+
38+ ``` shell
39+ kubectl apply -f https://github.com/n3wscott/graph/releases/download/v0.3.0/release-beta.yaml
40+ ```
41+
42+ To install into a ` test ` namespace,
43+
44+ ``` shell
45+ export NAMESPACE=test # <-- update test to your target namespace.
46+ curl -L https://github.com/n3wscott/graph/releases/download/v0.3.0/release-beta.yaml \
3047 | sed " s/default/${NAMESPACE} /" \
3148 | kubectl apply -n $NAMESPACE --filename -
3249```
@@ -36,14 +53,14 @@ curl -L https://github.com/n3wscott/graph/releases/download/v0.2.0/release.yaml
3653To install into the ` default ` namespace,
3754
3855``` shell
39- ko apply -f config/
56+ ko apply -f config
4057```
4158
4259To install into a ` test ` namespace,
4360
4461``` shell
4562export NAMESPACE=test # <-- update test to your target namespace.
46- ko resolve -f config/ \
63+ ko resolve -f config \
4764 | sed " s/default/${NAMESPACE} /" \
4865 | kubectl apply -n $NAMESPACE --filename -
4966```
0 commit comments