This repository was archived by the owner on May 24, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +16
-6
lines changed
Expand file tree Collapse file tree 3 files changed +16
-6
lines changed Original file line number Diff line number Diff 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 : |
Original file line number Diff line number Diff line change @@ -23,3 +23,4 @@ testbin/*
2323* .swp
2424* .swo
2525* ~
26+ .vscode /
Original file line number Diff line number Diff line change 11# Manual installation
22
3- ### 1. Deploy the operator
4-
53This will deploy the operator in the ` nginx-ingress-operator-system ` namespace.
64
75
861 . 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 ```
You can’t perform that action at this time.
0 commit comments