File tree Expand file tree Collapse file tree 2 files changed +26
-5
lines changed Expand file tree Collapse file tree 2 files changed +26
-5
lines changed Original file line number Diff line number Diff line change 1
- FROM amd64/ alpine:latest
1
+ FROM alpine:latest
2
2
3
3
ARG binary_version
4
4
@@ -8,13 +8,14 @@ RUN apk add --no-cache --update openssl \
8
8
ca-certificates \
9
9
libc6-compat \
10
10
libstdc++ \
11
+ bind-tools \
11
12
wget \
12
13
curl \
13
14
jq \
14
15
bash \
15
16
nodejs \
16
- npm \
17
- rm -rf /var/cache/apk/* && \
17
+ npm && \
18
+ rm -r -f /var/cache/apk/* && \
18
19
wget --quiet -O /usr/local/bin/akamai https://github.com/akamai/cli/releases/download/1.1.4/akamai-1.1.4-linuxamd64 && \
19
20
chmod +x /usr/local/bin/akamai && \
20
21
echo '[ ! -z "$TERM" -a -r /etc/motd ] && cat /etc/motd' >> /root/.bashrc
@@ -34,8 +35,8 @@ RUN akamai install property --force && \
34
35
rm -rf /cli/.akamai-cli/src/akamai-cli-netlist/.git
35
36
RUN akamai install https://github.com/apiheat/akamai-cli-overview --force && \
36
37
rm -rf /cli/.akamai-cli/src/akamai-cli-overview/.git
37
- # RUN wget --quiet -O /usr/local/bin/realcoverage https://github.com/apiheat/realcoverage/releases/download/v$binary_version/realcoverage_linux_amd64 && \
38
- # chmod +x /usr/local/bin/realcoverage
38
+ RUN wget --quiet -O /usr/local/bin/realcoverage https://github.com/apiheat/realcoverage/releases/download/v$binary_version/realcoverage_linux_amd64 && \
39
+ chmod +x /usr/local/bin/realcoverage
39
40
40
41
ENV AKAMAI_CLI_HOME=/cli
41
42
VOLUME /cli
Original file line number Diff line number Diff line change @@ -28,6 +28,26 @@ Please forgive us for some error or issue.
28
28
> export AKAMAI_EDGERC_CONFIG=" ~/.edgerc"
29
29
```
30
30
31
+ ### Example input data structure
32
+
33
+ ``` yaml
34
+ properties :
35
+ - property_name : test.com
36
+ property_records :
37
+ - record_name : test.com.
38
+ record_type : A
39
+ record_value : 123.123.124.124
40
+ record_value_is_akamai_ip : true
41
+ - record_name : static-test.com.
42
+ record_type : CNAME
43
+ record_value : static-test.com.edgekey.net.
44
+ - property_name : acc.test.com
45
+ property_records :
46
+ - record_name : acc.test.com.
47
+ record_type : CNAME
48
+ record_value : acc.test.com.edgekey.net.
49
+ ` ` `
50
+
31
51
### Generate report
32
52
33
53
` ` ` shell
You can’t perform that action at this time.
0 commit comments