File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -20,20 +20,23 @@ Lets continue on Azure VM:
20
20
``` shell
21
21
# IN AZURE VM (after sshvm)
22
22
23
+ # make sure machine is ready (it returns to prompt, once ready)
24
+ microk8s status --wait-ready
25
+
23
26
# ready to deploy AppSec WAF - FOCUS ON INPUTS AND DNS RECORD!!!
24
27
#
25
28
#
26
29
#
27
- MY_EMAIL_ADDRESS=
" [email protected] " # REPLACE
28
- APPSEC_TOKEN=cp-abc123 ... # REPLACE WITH REAL TOKEN from Infinity Portal
29
- APPSEC_HOSTNAME=appsec1492 .klaud.online # REPLACE
30
+ MY_EMAIL_ADDRESS=
" [email protected] " # REPLACE - used for Let's Encrypt
31
+ APPSEC_TOKEN=cp-67c2 ... # REPLACE WITH REAL TOKEN from Infinity Portal - Docker simple MANAGED profile token
32
+ APPSEC_HOSTNAME=appsec1493 .klaud.online # REPLACE
30
33
31
- # prepare DNS
34
+ # prepare/verify DNS
32
35
VMPUBLICIP=$( curl -s ip.iol.cz/ip/)
33
36
echo " Make sure DNS recort for $APPSEC_HOSTNAME points to $VMPUBLICIP "
34
37
# verify
35
38
sudo resolvectl flush-caches
36
- dig +short $APPSEC_HOSTNAME
39
+ echo " $APPSEC_HOSTNAME points to $( dig +short $APPSEC_HOSTNAME ) "
37
40
38
41
helm install appsec https://github.com/mkol5222/appsec-chart/releases/download/appsec-0.1.1/appsec-0.1.1.tgz --set cptoken=$APPSEC_TOKEN --set hostname=$APPSEC_HOSTNAME --set letsencrypt.email=$MY_EMAIL_ADDRESS
39
42
You can’t perform that action at this time.
0 commit comments