Skip to content

Commit

Permalink
Merge branch 'master' into fix/registrypullqps
Browse files Browse the repository at this point in the history
  • Loading branch information
AidanHilt authored Aug 16, 2023
2 parents c67c4cb + bfdd1c2 commit cacadaa
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"files": "^.secrets.baseline$",
"lines": null
},
"generated_at": "2023-07-31T16:54:24Z",
"generated_at": "2023-08-10T17:51:06Z",
"plugins_used": [
{
"name": "AWSKeyDetector"
Expand Down Expand Up @@ -78,7 +78,7 @@
{
"hashed_secret": "10daf3a26c6a17242a5ab2438a12ebc8276c7603",
"is_verified": false,
"line_number": 115,
"line_number": 122,
"type": "Secret Keyword"
}
],
Expand Down
7 changes: 7 additions & 0 deletions Docker/jenkins/Jenkins-CI-Worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ RUN export CLOUD_SDK_REPO="cloud-sdk-$(lsb_release -c -s)" \
google-cloud-sdk-cbt \
kubectl

# install go - https://go.dev/doc/install
RUN wget https://go.dev/dl/go1.21.0.linux-amd64.tar.gz \
&& rm -rf /usr/local/go \
&& tar -C /usr/local -xzf go1.21.0.linux-amd64.tar.gz
ENV PATH="$PATH:/usr/local/go/bin"
RUN go version

#
# install docker tools:
#
Expand Down
1 change: 1 addition & 0 deletions files/squid_whitelist/web_whitelist
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ orcid.org
pgp.mit.edu
ppa.launchpad.net
prometheus-community.github.io
proxy.golang.org
public.ecr.aws
pubmirrors.dal.corespace.com
reflector.westga.edu
Expand Down
2 changes: 2 additions & 0 deletions gen3/bin/kube-setup-wts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ new_client() {
"oidc_client_id": "$client_id",
"oidc_client_secret": "$client_secret",
"aggregate_endpoint_allowlist": ["/authz/mapping"],
"external_oidc": []
}
EOM
Expand Down
11 changes: 11 additions & 0 deletions kube/services/argo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ controller:
enabled: true
servicePort: 9090

resources:
requests:
memory: 8Gi
limits:
memory: 8Gi

podAnnotations:
prometheus.io/scrape: "true"
prometheus.io/path: /metrics
Expand Down Expand Up @@ -76,6 +82,11 @@ server:
extraEnv:
- name: ARGO_HTTP1
value: "true"
resources:
requests:
memory: 8Gi
limits:
memory: 8Gi

# -- Influences the creation of the ConfigMap for the workflow-controller itself.
useDefaultArtifactRepo: true
Expand Down

0 comments on commit cacadaa

Please sign in to comment.