Skip to content

Commit 7b389ed

Browse files
committed
Update install commands and yaml
1 parent 14550b8 commit 7b389ed

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
tag := $(shell git describe --tags)
2-
repo := infrahq/infra
2+
repo := infrahq/early-access
33

44
generate:
55
go generate ./...

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Infra is **identity and access management** for Kubernetes. Provide any user fin
2222
### Install Infra Registry
2323

2424
```
25-
kubectl apply -f https://raw.githubusercontent.com/infrahq/early-access/main/deploy/registry.yaml
25+
kubectl apply -f https://raw.githubusercontent.com/infrahq/release/main/deploy/registry.yaml
2626
```
2727

2828
Infra exposes a `LoadBalancer` service by default. Find the **External IP** of the load balancer:
@@ -34,7 +34,7 @@ kubectl get svc --namespace infra
3434
### Install Infra CLI
3535

3636
```
37-
curl -L "https://github.com/infrahq/early-access/releases/latest/download/infra-$(uname -s)-$(uname -m)" -o /usr/local/bin/infra && chmod +x /usr/local/bin/infra
37+
curl -L "https://github.com/infrahq/release/releases/latest/download/infra-$(uname -s)-$(uname -m)" -o /usr/local/bin/infra && chmod +x /usr/local/bin/infra
3838
```
3939

4040
### Log in
@@ -60,7 +60,7 @@ kubectl create configmap infra-engine -n infra --from-literal="name=<CLUSTER NAM
6060

6161
kubectl create secret generic infra-engine -n infra --from-literal="api-key=<API KEY>"
6262

63-
kubectl apply -f https://raw.githubusercontent.com/infrahq/early-access/main/deploy/engine.yaml
63+
kubectl apply -f https://raw.githubusercontent.com/infrahq/release/main/deploy/engine.yaml
6464
```
6565

6666
Verify the cluster has been connected:

deploy/engine.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,7 @@ spec:
120120
serviceAccountName: infra-engine
121121
containers:
122122
- name: engine
123-
image: infrahq/infra:dev
124-
imagePullPolicy: Always
123+
image: infrahq/infra:0.0.3
125124
args: ["engine"]
126125
ports:
127126
- containerPort: 80

deploy/registry.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ spec:
6464
automountServiceAccountToken: true
6565
containers:
6666
- name: registry
67-
image: infrahq/infra:dev
67+
image: infrahq/infra:0.0.3
6868
args: ["registry", "-c", "/var/run/infra/config/infra.yaml", "--db", "/var/run/infra/data/infra.db", "--tls-cache", "/var/run/infra/data/cache"]
6969
ports:
7070
- containerPort: 443

0 commit comments

Comments
 (0)