-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
||| |---|---| |Date|2023-08-23 |Kind| Minor release |Author|[email protected], [email protected] - **Features** - Added '--httpliveness' to disable HTTP(S) OPTIONS request for liveness checking - Added new feed for ETP: Network traffic connections details (netcon) [Requires CLI-ETP >= 0.4.2] - **Minor improvements** - DOC Fix for manual CLI installation - [docker] bumped CLI-EAA version to "0.5.9" - [docker] bumped CLI-ETP version to "0.4.2" - **Housekeeping** - Updated the ETP Links from developer.akamai.com to techdocs.akamai.com - Added "docker file liniting" into test scripts
- Loading branch information
1 parent
c406560
commit 758786f
Showing
13 changed files
with
93 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM python:3.11.4-slim-bookworm | ||
LABEL MAINTAINER="Mike Schiessl - [email protected]" | ||
LABEL MAINTAINER="Mike Schiessl - [email protected]" | ||
LABEL APP_LONG="Akamai Universal Log Streamer" | ||
LABEL APP_SHORT="ULS" | ||
LABEL VENDOR="Akamai Technologies" | ||
|
@@ -10,8 +10,8 @@ ARG HOMEDIR="/opt/akamai-uls" | |
ARG ULS_DIR="$HOMEDIR/uls" | ||
ARG EXT_DIR="$ULS_DIR/ext" | ||
|
||
ARG ETP_CLI_VERSION="0.4.0" | ||
ARG EAA_CLI_VERSION="0.5.7" | ||
ARG ETP_CLI_VERSION="0.4.2" | ||
ARG EAA_CLI_VERSION="0.5.9" | ||
ARG MFA_CLI_VERSION="0.1.1" | ||
ARG GC_CLI_VERSION="v0.0.1(beta)" | ||
ARG LINODE_CLI_VERSION="dev" | ||
|
@@ -23,6 +23,7 @@ ENV HOMEDIR=$HOMEDIR | |
ENV CONTAINERIZED=TRUE | ||
|
||
# PREPARE ENVIRONMENT | ||
# hadolint ignore=DL3008 | ||
RUN apt-get update && \ | ||
apt-get --no-install-recommends -y install \ | ||
ca-certificates \ | ||
|
@@ -47,34 +48,34 @@ RUN mkdir -p ${ULS_DIR} && \ | |
# Install ULS | ||
COPY bin/ ${ULS_DIR}/bin | ||
WORKDIR ${ULS_DIR} | ||
RUN pip3 install -r ${ULS_DIR}/bin/requirements.txt | ||
RUN pip3 install --no-cache-dir -r ${ULS_DIR}/bin/requirements.txt | ||
|
||
# Install external CLI'S | ||
## ETP CLI | ||
ENV ETP_CLI_VERSION=$ETP_CLI_VERSION | ||
RUN git clone --depth 1 -b "${ETP_CLI_VERSION}" --single-branch https://github.com/akamai/cli-etp.git ${EXT_DIR}/cli-etp && \ | ||
pip3 install -r ${EXT_DIR}/cli-etp/requirements.txt | ||
pip3 install --no-cache-dir -r ${EXT_DIR}/cli-etp/requirements.txt | ||
|
||
## EAA CLI | ||
ENV EAA-CLI_VERSION=$EAA_CLI_VERSION | ||
RUN git clone --depth 1 -b "${EAA_CLI_VERSION}" --single-branch https://github.com/akamai/cli-eaa.git ${EXT_DIR}/cli-eaa && \ | ||
pip3 install -r ${EXT_DIR}/cli-eaa/requirements.txt | ||
pip3 install --no-cache-dir -r ${EXT_DIR}/cli-eaa/requirements.txt | ||
|
||
|
||
## MFA CLI | ||
ENV MFA-CLI_VERSION=$MFA_CLI_VERSION | ||
RUN git clone --depth 1 -b "${MFA_CLI_VERSION}" --single-branch https://github.com/akamai/cli-mfa.git ${EXT_DIR}/cli-mfa && \ | ||
pip3 install -r ${EXT_DIR}/cli-mfa/requirements.txt | ||
pip3 install --no-cache-dir -r ${EXT_DIR}/cli-mfa/requirements.txt | ||
|
||
## GuardiCore CLI | ||
ENV GC_CLI_VERSION=$GC_CLI_VERSION | ||
RUN git clone --depth 1 -b "${GC_CLI_VERSION}" --single-branch https://github.com/MikeSchiessl/gc-logs.git ${EXT_DIR}/cli-gc && \ | ||
pip3 install -r ${EXT_DIR}/cli-gc/bin/requirements.txt | ||
pip3 install --no-cache-dir -r ${EXT_DIR}/cli-gc/bin/requirements.txt | ||
|
||
## LINODE CLI | ||
ENV LINODE_CLI_VERSION=$LINODE_CLI_VERSION | ||
RUN git clone --depth 1 -b "${LINODE_CLI_VERSION}" --single-branch https://github.com/MikeSchiessl/ln-logs.git ${EXT_DIR}/cli-linode && \ | ||
pip3 install -r ${EXT_DIR}/cli-linode/bin/requirements.txt | ||
pip3 install --no-cache-dir -r ${EXT_DIR}/cli-linode/bin/requirements.txt | ||
|
||
# ENTRYPOINTS / CMD | ||
VOLUME ["${ULS_DIR}/var"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,22 @@ | ||
# Version History | ||
|
||
## v1.6.6 | ||
||| | ||
|---|---| | ||
|Date|2023-08-23 | ||
|Kind| Minor release | ||
|Author|[email protected], [email protected] | ||
- **Features** | ||
- Added '--httpliveness' to disable HTTP(S) OPTIONS request for liveness checking | ||
- Added new feed for ETP: Network traffic connections details (netcon) [Requires CLI-ETP >= 0.4.2] | ||
- **Minor improvements** | ||
- DOC Fix for manual CLI installation | ||
- [docker] bumped CLI-EAA version to "0.5.9" | ||
- [docker] bumped CLI-ETP version to "0.4.2" | ||
- **Housekeeping** | ||
- Updated the ETP Links from developer.akamai.com to techdocs.akamai.com | ||
- Added "docker file liniting" into test scripts | ||
|
||
## v1.6.5 | ||
||| | ||
|---|---| | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.