zrok/docs/v0.2_quickstart.md

102 lines
2.8 KiB
Markdown
Raw Normal View History

2022-08-10 17:56:29 +02:00
# zrok quickstart
## ziti quickstart
```
$ source /dev/stdin <<< "$(wget -qO- https://raw.githubusercontent.com/openziti/ziti/release-next/quickstart/docker/image/ziti-cli-functions.sh)"; expressInstall
```
## configure frontend identity
2022-08-10 17:56:29 +02:00
```
2022-10-14 19:02:08 +02:00
$ ziti edge create identity service frontend -o ~/.zrok/identities/frontend.jwt
2022-08-10 17:56:29 +02:00
New identity proxy created with id: -zbBF8eVb-
Enrollment expires at 2022-08-10T18:46:16.641Z
```
```
2022-10-14 19:02:08 +02:00
$ ziti edge enroll -j ~/.zrok/identities/frontend.jwt -o ~/.zrok/identities/frontend.json
2022-08-10 17:56:29 +02:00
INFO generating 4096 bit RSA key
INFO enrolled successfully. identity file written to: proxy.json
```
2022-08-29 23:39:20 +02:00
```
2022-10-14 19:02:08 +02:00
$ ziti edge create erp frontend --edge-router-roles "#all" --identity-roles "@frontend"
2022-10-14 19:14:58 +02:00
New edge router policy frontend created with id: aOxvtWIanFIAwuU51lF9SU
2022-10-14 19:02:08 +02:00
```
## configure controller identity
```
$ ziti edge create identity service ctrl -o ~/.zrok/identities/ctrl.jwt
New identity ctrl created with id: e8c3tQo3SR
Enrollment expires at 2022-10-14T19:59:01.908Z
```
```
$ ziti edge enroll -j ~/.zrok/identities/ctrl.jwt -o ~/.zrok/identities/ctrl.json
INFO generating 4096 bit RSA key
INFO enrolled successfully. identity file written to: /home/michael/.zrok/identities/ctrl.json
```
```
$ ziti edge create erp ctrl --edge-router-roles "#all" --identity-roles "@ctrl"
New edge router policy ctrl created with id: 7OxvtWIanFIAwuU51lF9SU
```
2022-08-29 23:39:20 +02:00
2022-10-14 19:14:58 +02:00
## create metrics service
```
$ ziti edge create service metrics
New service metrics created with id: 56y5AFsKmSsIWLsmFNBeJz
```
2022-11-11 17:32:37 +01:00
### create service edge router policy for metrics service
```
$ ziti edge create serp ctrl-public --service-roles "@metrics" --edge-router-roles "#all"
```
2022-10-14 19:14:58 +02:00
### allow the controller to bind the metrics service
```
$ ziti edge create sp ctrl-bind Bind --identity-roles "@ctrl" --service-roles "@metrics"
New service policy ctrl-bind created with id: 3SXgFftSgBnenjgdBENOGR
```
### allow frontends to dial the metrics service
```
$ ziti edge create sp ctrl-dial Dial --identity-roles "@frontend" --service-roles "@metrics"
New service policy ctrl-dial created with id: 6pCe9uGj8oB2JXlWb44x2u
```
2022-08-10 17:56:29 +02:00
## start zrok resources
adjust `ctrl.yml` (or create a copy for your environment).
```
$ zrok ctrl etc/ctrl.yml
```
```
$ zrok proxy ~/.zrok/proxy.json
```
## create zrok account
```
$ zrok create account
New Username: michael@quigley.com
New Password:
Confirm Password:
[ 3.122] INFO main.glob..func1: api token: 9ae56d39a6e96d65a45518b5ea1637a0677581a33ba44bbc3c103f6351ec478fb8185e97a993382ed2daa26720d40b052824dbce5ef38874c82893f33e445b06
```
## enable zrok for your shell
```
$ zrok enable 9ae56d39a6e96d65a45518b5ea1637a0677581a33ba44bbc3c103f6351ec478fb8185e97a993382ed2daa26720d40b052824dbce5ef38874c82893f33e445b06
[ 0.691] INFO main.enable: enabled, identity = 'ARjEc8eVA-'
```
## tunnel
```
$ zrok http <endpoint>
```