Skip to content

Commit

Permalink
v0.2.1: fix Kubernetes 1.18 backwards compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
compumike committed Apr 1, 2021
1 parent d1b8acd commit 10ef5fd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ If you've had problems with ingress-nginx, cert-manager, LetsEncrypt ACME HTTP01
## One-line install

```shell
kubectl apply -f https://raw.githubusercontent.com/compumike/hairpin-proxy/v0.2.0/deploy.yml
kubectl apply -f https://raw.githubusercontent.com/compumike/hairpin-proxy/v0.2.1/deploy.yml
```

If you're using [ingress-nginx](https://kubernetes.github.io/ingress-nginx/) and [cert-manager](https://github.com/jetstack/cert-manager), it will work out of the box. See detailed installation and testing instructions below.
Expand Down Expand Up @@ -72,7 +72,7 @@ The `dig` should show the external load balancer IP address. The first `curl` sh
### Step 1: Install hairpin-proxy in your Kubernetes cluster

```shell
kubectl apply -f https://raw.githubusercontent.com/compumike/hairpin-proxy/v0.2.0/deploy.yml
kubectl apply -f https://raw.githubusercontent.com/compumike/hairpin-proxy/v0.2.1/deploy.yml
```

If you're using `ingress-nginx`, this will work as-is.
Expand Down Expand Up @@ -129,5 +129,5 @@ To resolve this, we need to rewrite the DNS on the Node itself. The Node does no
To install this DaemonSet:

```shell
kubectl apply -f https://raw.githubusercontent.com/compumike/hairpin-proxy/v0.2.0/deploy-etchosts-daemonset.yml
kubectl apply -f https://raw.githubusercontent.com/compumike/hairpin-proxy/v0.2.1/deploy-etchosts-daemonset.yml
```
2 changes: 1 addition & 1 deletion deploy-etchosts-daemonset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
serviceAccountName: hairpin-proxy-controller-sa
containers:
- image: compumike/hairpin-proxy-controller:0.2.0
- image: compumike/hairpin-proxy-controller:0.2.1
name: main
command: ["/app/src/main.rb", "--etc-hosts", "/app/etchosts"]
volumeMounts:
Expand Down
4 changes: 2 additions & 2 deletions deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
app: hairpin-proxy-haproxy
spec:
containers:
- image: compumike/hairpin-proxy-haproxy:0.2.0
- image: compumike/hairpin-proxy-haproxy:0.2.1
name: main
resources:
requests:
Expand Down Expand Up @@ -151,7 +151,7 @@ spec:
runAsUser: 405
runAsGroup: 65533
containers:
- image: compumike/hairpin-proxy-controller:0.2.0
- image: compumike/hairpin-proxy-controller:0.2.1
name: main
resources:
requests:
Expand Down

0 comments on commit 10ef5fd

Please sign in to comment.