Skip to content

Commit

Permalink
Added aws helm chart installation;updated crds installation path
Browse files Browse the repository at this point in the history
Signed-off-by: sachin maharana <[email protected]>
  • Loading branch information
SachinMaharana authored and alexellis committed Jul 21, 2020
1 parent 337da78 commit 7a0abb7
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion chart/inlets-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ You can also install the inlets-operator with [arkade install inlets-operator](h
* Install the CRD:

```sh
kubectl apply -f ./artifacts/crd.yaml
kubectl apply -f ./artifacts/crds
```

## Deploy an example configuration
Expand All @@ -45,6 +45,34 @@ helm upgrade inlets-operator --install inlets/inlets-operator \
--set inletsProLicense=JWT_GOES_HERE
```

### AWS EC2 with inlets OSS

```bash
kubectl create secret generic inlets-secret-key \
--from-literal inlets-secret-key="$(cat ~/Downloads/aws-secret-access-key)"
kubectl create secret generic inlets-access-key \
--from-literal inlets-access-key="$(cat ~/Downloads/aws-access-key)"
helm upgrade inlets-operator --install inlets/inlets-operator \
--set provider=ec2,region=us-east-1,accessKeyFile=/var/secrets/inlets/inlets-access-key,\
secretKeyFile=/var/secrets/inlets/secret/inlets-secret-key
```

### AWS EC2 with inlets-pro

```bash
kubectl create secret generic inlets-secret-key \
--from-literal inlets-secret-key="$(cat ~/Downloads/aws-secret-access-key)"
kubectl create secret generic inlets-access-key \
--from-literal inlets-access-key="$(cat ~/Downloads/aws-access-key)"
helm upgrade inlets-operator --install inlets/inlets-operator \
--set provider=ec2,region=us-east-1,accessKeyFile=/var/secrets/inlets/inlets-access-key,\
secretKeyFile=/var/secrets/inlets/secret/inlets-secret-key,inletsProLicense=JWT_GOES_HERE
```

### Google Compute Engine with inlets OSS

```sh
Expand Down

0 comments on commit 7a0abb7

Please sign in to comment.