Skip to content

Commit

Permalink
Merge branch 'master' into feat/config-update-script
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoaugustine authored Jul 23, 2024
2 parents 756f75e + 522b2bb commit 4c72805
Show file tree
Hide file tree
Showing 15 changed files with 87 additions and 130 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
repos:
- repo: [email protected]:Yelp/detect-secrets
rev: v1.4.0
rev: v1.5.0
hooks:
- id: detect-secrets
args: ['--baseline', '.secrets.baseline']
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.5.0
rev: v4.6.0
hooks:
- id: no-commit-to-branch
args: [--branch, develop, --branch, master, --pattern, release/.*]
104 changes: 26 additions & 78 deletions .secrets.baseline
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.4.0",
"version": "1.5.0",
"plugins_used": [
{
"name": "ArtifactoryDetector"
Expand All @@ -26,6 +26,9 @@
{
"name": "GitHubTokenDetector"
},
{
"name": "GitLabTokenDetector"
},
{
"name": "HexHighEntropyString",
"limit": 3.0
Expand All @@ -36,6 +39,9 @@
{
"name": "IbmCosHmacDetector"
},
{
"name": "IPPublicDetector"
},
{
"name": "JwtTokenDetector"
},
Expand All @@ -49,9 +55,15 @@
{
"name": "NpmDetector"
},
{
"name": "OpenAIDetector"
},
{
"name": "PrivateKeyDetector"
},
{
"name": "PypiTokenDetector"
},
{
"name": "SendGridDetector"
},
Expand All @@ -67,6 +79,9 @@
{
"name": "StripeDetector"
},
{
"name": "TelegramBotTokenDetector"
},
{
"name": "TwilioKeyDetector"
}
Expand All @@ -75,10 +90,6 @@
{
"path": "detect_secrets.filters.allowlist.is_line_allowlisted"
},
{
"path": "detect_secrets.filters.common.is_baseline_file",
"filename": ".secrets.baseline"
},
{
"path": "detect_secrets.filters.common.is_ignored_due_to_verification_policies",
"min_level": 2
Expand Down Expand Up @@ -246,6 +257,15 @@
"line_number": 154
}
],
"files/lambda/test-security_alerts.py": [
{
"type": "AWS Access Key",
"filename": "files/lambda/test-security_alerts.py",
"hashed_secret": "4e041fbfd5dd5918d3d5e968f5f739f815ae92da",
"is_verified": false,
"line_number": 5
}
],
"files/scripts/psql-fips-fix.sh": [
{
"type": "Secret Keyword",
Expand Down Expand Up @@ -640,78 +660,6 @@
"line_number": 25
}
],
"gen3/test/terraformTest.sh": [
{
"type": "Secret Keyword",
"filename": "gen3/test/terraformTest.sh",
"hashed_secret": "6b44a330b450ee550c081410c6b705dfeaa105ce",
"is_verified": false,
"line_number": 156
},
{
"type": "Secret Keyword",
"filename": "gen3/test/terraformTest.sh",
"hashed_secret": "d869db7fe62fb07c25a0403ecaea55031744b5fb",
"is_verified": false,
"line_number": 163
},
{
"type": "Base64 High Entropy String",
"filename": "gen3/test/terraformTest.sh",
"hashed_secret": "1cc07dccfdf640eb0e403e490a873a5536759009",
"is_verified": false,
"line_number": 172
},
{
"type": "Secret Keyword",
"filename": "gen3/test/terraformTest.sh",
"hashed_secret": "1cc07dccfdf640eb0e403e490a873a5536759009",
"is_verified": false,
"line_number": 172
},
{
"type": "Base64 High Entropy String",
"filename": "gen3/test/terraformTest.sh",
"hashed_secret": "185a71a740ef6b9b21c84e6eaa47b89c7de181ef",
"is_verified": false,
"line_number": 175
},
{
"type": "Secret Keyword",
"filename": "gen3/test/terraformTest.sh",
"hashed_secret": "185a71a740ef6b9b21c84e6eaa47b89c7de181ef",
"is_verified": false,
"line_number": 175
},
{
"type": "Secret Keyword",
"filename": "gen3/test/terraformTest.sh",
"hashed_secret": "212e1d3823c8c9af9e4c0c172164ee292b9a6768",
"is_verified": false,
"line_number": 311
},
{
"type": "Secret Keyword",
"filename": "gen3/test/terraformTest.sh",
"hashed_secret": "cb80dbb67a1a5bdf4957eea1473789f1c65357c6",
"is_verified": false,
"line_number": 312
},
{
"type": "Secret Keyword",
"filename": "gen3/test/terraformTest.sh",
"hashed_secret": "5f35c25f4bf588b5fad46e249fcd9221f5257ce4",
"is_verified": false,
"line_number": 313
},
{
"type": "Secret Keyword",
"filename": "gen3/test/terraformTest.sh",
"hashed_secret": "5308421b43dde5775f1993bd25a8163070d65598",
"is_verified": false,
"line_number": 314
}
],
"kube/services/access-backend/access-backend-deploy.yaml": [
{
"type": "Secret Keyword",
Expand Down Expand Up @@ -3737,5 +3685,5 @@
}
]
},
"generated_at": "2024-07-05T21:37:59Z"
"generated_at": "2024-07-19T04:34:31Z"
}
18 changes: 9 additions & 9 deletions Docker/jenkins/Jenkins-CI-Worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,21 +83,21 @@ RUN curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc| gpg --dearmor
apt-get install -y postgresql-client-13

# Copy sh script responsible for installing Python
COPY install-python3.8.sh /root/tmp/install-python3.8.sh
COPY install-python3.9.sh /root/tmp/install-python3.9.sh

# Run the script responsible for installing Python 3.8.0 and link it to /usr/bin/python
RUN chmod +x /root/tmp/install-python3.8.sh; sync && \
bash /root/tmp/install-python3.8.sh && \
rm -rf /root/tmp/install-python3.8.sh && \
# Run the script responsible for installing Python 3.9.19 and link it to /usr/bin/python
RUN chmod +x /root/tmp/install-python3.9.sh; sync && \
bash /root/tmp/install-python3.9.sh && \
rm -rf /root/tmp/install-python3.9.sh && \
unlink /usr/bin/python3 && \
ln -s /usr/local/bin/python3.8 /usr/bin/python3
ln -s /usr/local/bin/python3.9 /usr/bin/python3

# Fix shebang for lsb_release
RUN sed -i 's/python3/python3.8/' /usr/bin/lsb_release && \
sed -i 's/python3/python3.8/' /usr/bin/add-apt-repository
RUN sed -i 's/python3/python3.9/' /usr/bin/lsb_release && \
sed -i 's/python3/python3.9/' /usr/bin/add-apt-repository

# install aws cli, poetry, pytest, etc.
RUN set -xe && python3.8 -m pip install --upgrade pip setuptools && python3.8 -m pip install awscli --upgrade && python3.8 -m pip install pytest --upgrade && python3.8 -m pip install poetry && python3.8 -m pip install PyYAML --upgrade && python3.8 -m pip install lxml --upgrade && python3.8 -m pip install yq --upgrade && python3.8 -m pip install datadog --upgrade
RUN set -xe && python3.9 -m pip install --upgrade pip setuptools && python3.9 -m pip install awscli --upgrade && python3.9 -m pip install pytest --upgrade && python3.9 -m pip install poetry && python3.9 -m pip install PyYAML --upgrade && python3.9 -m pip install lxml --upgrade && python3.9 -m pip install yq --upgrade && python3.9 -m pip install datadog --upgrade

# install terraform
RUN curl -o /tmp/terraform.zip https://releases.hashicorp.com/terraform/0.11.15/terraform_0.11.15_linux_amd64.zip \
Expand Down
8 changes: 0 additions & 8 deletions Docker/jenkins/Jenkins-CI-Worker/install-python3.8.sh

This file was deleted.

8 changes: 8 additions & 0 deletions Docker/jenkins/Jenkins-CI-Worker/install-python3.9.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash
wget https://www.python.org/ftp/python/3.9.19/Python-3.9.19.tar.xz
tar xf Python-3.9.19.tar.xz
rm Python-3.9.19.tar.xz
cd Python-3.9.19
./configure
make
make altinstall
18 changes: 9 additions & 9 deletions Docker/jenkins/Jenkins/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,21 +68,21 @@ RUN DISTRO="$(lsb_release -c -s)" \
&& rm -rf /var/lib/apt/lists/*

# Copy sh script responsible for installing Python
COPY install-python3.8.sh /root/tmp/install-python3.8.sh
COPY install-python3.9.sh /root/tmp/install-python3.9.sh

# Run the script responsible for installing Python 3.8.0 and link it to /usr/bin/python
RUN chmod +x /root/tmp/install-python3.8.sh; sync && \
./root/tmp/install-python3.8.sh && \
rm -rf /root/tmp/install-python3.8.sh && \
# Run the script responsible for installing Python 3.9.19 and link it to /usr/bin/python
RUN chmod +x /root/tmp/install-python3.9.sh; sync && \
./root/tmp/install-python3.9.sh && \
rm -rf /root/tmp/install-python3.9.sh && \
unlink /usr/bin/python3 && \
ln -s /Python-3.8.0/python /usr/bin/python3
ln -s /Python-3.9.0/python /usr/bin/python3

# Fix shebang for lsb_release
RUN sed -i 's/python3/python3.8/' /usr/bin/lsb_release && \
sed -i 's/python3/python3.8/' /usr/bin/add-apt-repository
RUN sed -i 's/python3/python3.9/' /usr/bin/lsb_release && \
sed -i 's/python3/python3.9/' /usr/bin/add-apt-repository

# install aws cli, poetry, pytest, etc.
RUN set -xe && python3 -m pip install --upgrade pip && python3 -m pip install awscli --upgrade && python3 -m pip install pytest --upgrade && python3 -m pip install poetry && python3 -m pip install PyYAML --upgrade && python3 -m pip install lxml --upgrade && python3 -m pip install yq --upgrade
RUN set -xe && python3.9 -m pip install --upgrade pip && python3.9 -m pip install awscli --upgrade && python3.9 -m pip install pytest --upgrade && python3.9 -m pip install poetry && python3.9 -m pip install PyYAML --upgrade && python3.9 -m pip install lxml --upgrade && python3.9 -m pip install yq --upgrade

# install chrome (supports headless mode)
RUN set -xe \
Expand Down
7 changes: 0 additions & 7 deletions Docker/jenkins/Jenkins/install-python3.8.sh

This file was deleted.

7 changes: 7 additions & 0 deletions Docker/jenkins/Jenkins/install-python3.9.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
wget https://www.python.org/ftp/python/3.9.19/Python-3.9.19.tar.xz
tar xf Python-3.9.19.tar.xz
rm Python-3.9.19.tar.xz
cd Python-3.9.19
./configure
make
make altinstall
18 changes: 9 additions & 9 deletions Docker/jenkins/Jenkins2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,21 +69,21 @@ RUN DISTRO="$(lsb_release -c -s)" \
&& rm -rf /var/lib/apt/lists/*

# Copy sh script responsible for installing Python
COPY install-python3.8.sh /root/tmp/install-python3.8.sh
COPY install-python3.9.sh /root/tmp/install-python3.9.sh

# Run the script responsible for installing Python 3.8.0 and link it to /usr/bin/python
RUN chmod +x /root/tmp/install-python3.8.sh; sync && \
./root/tmp/install-python3.8.sh && \
rm -rf /root/tmp/install-python3.8.sh && \
# Run the script responsible for installing Python 3.9.19 and link it to /usr/bin/python
RUN chmod +x /root/tmp/install-python3.9.sh; sync && \
./root/tmp/install-python3.9.sh && \
rm -rf /root/tmp/install-python3.9.sh && \
unlink /usr/bin/python3 && \
ln -s /Python-3.8.0/python /usr/bin/python3
ln -s /Python-3.9.19/python /usr/bin/python3

# Fix shebang for lsb_release
RUN sed -i 's/python3/python3.5/' /usr/bin/lsb_release && \
sed -i 's/python3/python3.5/' /usr/bin/add-apt-repository
RUN sed -i 's/python3/python3.9/' /usr/bin/lsb_release && \
sed -i 's/python3/python3.9/' /usr/bin/add-apt-repository

# install aws cli, poetry, pytest, etc.
RUN set -xe && python3 -m pip install --upgrade pip && python3 -m pip install awscli --upgrade && python3 -m pip install pytest --upgrade && python3 -m pip install poetry && python3 -m pip install PyYAML --upgrade && python3 -m pip install lxml --upgrade && python3 -m pip install yq --upgrade
RUN set -xe && python3.9 -m pip install --upgrade pip && python3.9 -m pip install awscli --upgrade && python3.9 -m pip install pytest --upgrade && python3.9 -m pip install poetry && python3.9 -m pip install PyYAML --upgrade && python3.9 -m pip install lxml --upgrade && python3.9 -m pip install yq --upgrade

# install chrome (supports headless mode)
RUN set -xe \
Expand Down
7 changes: 0 additions & 7 deletions Docker/jenkins/Jenkins2/install-python3.8.sh

This file was deleted.

7 changes: 7 additions & 0 deletions Docker/jenkins/Jenkins2/install-python3.9.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
wget https://www.python.org/ftp/python/3.9.19/Python-3.9.19.tar.xz
tar xf Python-3.9.19.tar.xz
rm Python-3.9.19.tar.xz
cd Python-3.9.19
./configure
make
make altinstall
2 changes: 1 addition & 1 deletion kube/services/argo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ controller:
name: slack-webhook-secret
source: |
failure_reason=$(echo {{workflow.failures}} | jq 'any(.[]; .message == "Step exceeded its deadline")' )
if [ "$failure_reason" ]; then
if [ "$failure_reason" = "true" ]; then
curl -X POST -H 'Content-type: application/json' --data "{\"text\":\"ALERT: Workflow {{workflow.name}} has been killed due to timeout\"}" "$SLACK_WEBHOOK_URL"
fi
Expand Down
3 changes: 3 additions & 0 deletions kube/services/node-monitors/argo-monitors/argo-node-age.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ metadata:
namespace: default
spec:
schedule: "*/5 * * * *"
successfulJobsHistoryLimit: 3
failedJobsHistoryLimit: 1
jobTemplate:
spec:
backoffLimit: 4
template:
metadata:
labels:
Expand Down
3 changes: 3 additions & 0 deletions kube/services/node-monitors/fenceshib-jenkins-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ metadata:
namespace: default
spec:
schedule: "0 */4 * * *"
successfulJobsHistoryLimit: 3
failedJobsHistoryLimit: 1
jobTemplate:
spec:
backoffLimit: 4
template:
metadata:
labels:
Expand Down
3 changes: 3 additions & 0 deletions kube/services/node-monitors/node-not-ready.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ metadata:
namespace: default
spec:
schedule: "*/30 * * * *"
successfulJobsHistoryLimit: 3
failedJobsHistoryLimit: 1
jobTemplate:
spec:
backoffLimit: 4
template:
metadata:
labels:
Expand Down

0 comments on commit 4c72805

Please sign in to comment.