Skip to content
This repository was archived by the owner on May 24, 2023. It is now read-only.

Commit 507fc9d

Browse files
authored
Update manual installation docs to include tag checkout (#157)
1 parent 67411fe commit 507fc9d

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,9 @@ jobs:
102102
uses: docker/build-push-action@v2
103103
with:
104104
context: '.'
105-
cache-from: type=gha
106-
cache-to: type=gha,mode=max
105+
# Disable cache until https://github.com/docker/buildx/issues/681 is fixed
106+
# cache-from: type=gha
107+
# cache-to: type=gha,mode=max
107108
tags: nginx/nginx-ingress-operator:${{ github.sha }}
108109
push: false
109110

@@ -135,6 +136,9 @@ jobs:
135136
with:
136137
file: Dockerfile
137138
context: '.'
139+
# Disable cache until https://github.com/docker/buildx/issues/681 is fixed
140+
# cache-from: type=gha
141+
# cache-to: type=gha,mode=max
138142
cache-from: type=gha
139143
cache-to: type=gha,mode=max
140144
tags: |

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ testbin/*
2323
*.swp
2424
*.swo
2525
*~
26+
.vscode/

docs/manual-installation.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
# Manual installation
22

3-
### 1. Deploy the operator
4-
53
This will deploy the operator in the `nginx-ingress-operator-system` namespace.
64

75

86
1. Deploy the Operator and associated resources:
9-
1. <Openshift> To deploy the Operator and associated resources to an OpenShift environment, run:
7+
1. Clone the `nginx-ingress-operator` repo and checkout the latest stable tag:
8+
```
9+
git clone https://github.com/nginxinc/nginx-ingress-operator/
10+
cd nginx-ingress-operator/
11+
git checkout v0.3.0
12+
```
13+
14+
2. `Openshift` To deploy the Operator and associated resources to an OpenShift environment, run:
1015
```
1116
make openshift-deploy IMG=registry.connect.redhat.com/nginx/nginx-ingress-operator:0.3.0
1217
```
1318
14-
2. To deploy the Operator and associated resources to all other environments:
19+
3. Alternatively, to deploy the Operator and associated resources to all other environments:
1520
```
1621
make deploy IMG=nginx/nginx-ingress-operator:0.3.0
1722
```

0 commit comments

Comments
 (0)