Skip to content

Commit 61a426b

Browse files
author
Jeff Peeler
committed
chore(docs): fix up whitespacing
1 parent 8429cb3 commit 61a426b

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

Documentation/install/install.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ repo is periodically synced with openshift-ansible and should only be used for t
2222
## Run locally with minikube
2323

2424
This command starts minikube, builds the OLM containers locally with the minikube-provided docker, and uses the local configuration in [local-values.yaml](local-values.yaml) to build localized deployment resources for OLM.
25+
2526
```
2627
make run-local
2728
```
@@ -87,18 +88,18 @@ To configure a release of OLM for installation in a cluster:
8788
8889
1. Create a `my-values.yaml` like the example above with the desired configuration or choose an existing one from this repository. The latest production values can be found in [deploy/tectonic-alm-operator/values.yaml](../../deploy/tectonic-alm-operator/values.yaml).
8990
1. Generate deployment files from the templates and the `my-values.yaml` using `package-release.sh`
91+
9092
```bash
9193
# first arg must be a semver-compatible version string
9294
# second arg is the output directory
9395
# third arg is the values.yaml file
9496
./scripts/package-release.sh 1.0.0-myolm ./my-olm-deployment my-values.yaml
9597
```
96-
1. Deploy to kubernetes: `kubectl apply -f ./my-olm-deployment/templates/`
9798

99+
1. Deploy to kubernetes: `kubectl apply -f ./my-olm-deployment/templates/`
98100

99101
The above steps are automated for official releases with `make ver=0.3.0 release`, which will output new versions of manifests in `deploy/tectonic-alm-operator/manifests/$(ver)`.
100102

101-
102103
## Subscribe to a Package and Channel
103104

104105
Cloud Services can be installed from the catalog by subscribing to a channel in the corresponding package.

scripts/run_e2e_docker.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ echo "catalog_namespace: ${namespace}" >> ${tmpdir}/e2e-values.yaml
1717
./scripts/package-release.sh 1.0.0-e2e test/e2e/resources ${tmpdir}/e2e-values.yaml
1818

1919
function cleanup {
20-
kubectl delete namespace ${namespace}
21-
rm -rf test/e2e/resources
22-
rm -rf test/e2e/test-resources
20+
kubectl delete namespace ${namespace}
21+
rm -rf test/e2e/resources
22+
rm -rf test/e2e/test-resources
2323
}
2424

2525
function cleanupAndExit {

scripts/run_e2e_local.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ echo "catalog_namespace: ${namespace}" >> ${tmpdir}/e2e-values.yaml
1818
./scripts/package-release.sh 1.0.0-e2e test/e2e/resources ${tmpdir}/e2e-values.yaml
1919

2020
function cleanup {
21-
kubectl delete namespace ${namespace}
22-
rm -rf test/e2e/resources
21+
kubectl delete namespace ${namespace}
22+
rm -rf test/e2e/resources
2323
}
2424

2525
function cleanupAndExit {

0 commit comments

Comments
 (0)