Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/master' into release-2.5
Browse files Browse the repository at this point in the history
# Conflicts:
#	.concourse/pipeline.yaml.gomplate
  • Loading branch information
viovanov committed Oct 2, 2020
2 parents 295f9a0 + de1f1f6 commit 2e47fb4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .concourse/pipeline.yaml.gomplate
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ resources:
access_key_id: ((aws-access-key))
secret_access_key: ((aws-secret-key))
region_name: {{ $config.s3_final_bucket_region }}
regexp: kubecf-v([0-9]+\.[0-9]+\.[0-9]+(?:-[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)?(?:\+[0-9A-Za-z-]+)?).tgz
regexp: kubecf-v?([0-9]+\.[0-9]+\.[0-9]+(?:-[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)?(?:\+[0-9A-Za-z-]+)?).tgz

- name: s3.kubecf-bundle
type: s3
Expand All @@ -160,7 +160,7 @@ resources:
access_key_id: ((aws-access-key))
secret_access_key: ((aws-secret-key))
region_name: {{ $config.s3_final_bucket_region }}
regexp: kubecf-bundle-v([0-9]+\.[0-9]+\.[0-9]+(?:-[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)?(?:\+[0-9A-Za-z-]+)?).tgz
regexp: kubecf-bundle-v?([0-9]+\.[0-9]+\.[0-9]+(?:-[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)?(?:\+[0-9A-Za-z-]+)?).tgz

deploy_args: &deploy_args
- -ce
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- path: /instance_groups/name=rotate-cc-database-key/env?/bosh/agent/settings/disable_log_sidecar
type: replace
value: true
5 changes: 4 additions & 1 deletion chart/config/resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,14 @@ resources:
rep:
rep: {memory: {limit: 3072, request: 2048}}
doppler:
doppler: 128
doppler: 256
log-api: 128
log-cache:
log-cache: 2048
nats: ~
rotate-cc-database-key:
rotate_cc_database_key:
rotate: {memory: {limit: 512, request: 192}}
router: 200
scheduler:
cc_deployment_updater: 320
Expand Down
2 changes: 1 addition & 1 deletion mixins/eirinix/templates/loggregator-bridge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
{{- end }}
env:
- name: EIRINI_LOGGREGATOR_BRIDGE_LOGLEVEL
value: DEBUG
value: INFO
- name: LOGGREGATOR_CERT_PATH
value: /run/secrets/loggregator-cert/certificate
- name: LOGGREGATOR_KEY_PATH
Expand Down
5 changes: 2 additions & 3 deletions testing/ccdb_key_rotation/rotate-ccdb-keys-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,9 @@ wait_for_rotate_pod_to_end() {
exit_code="$(kubectl get "${pod_name}" --namespace "${KUBECF_NAMESPACE}" --output "jsonpath=${jsonpath}")"
if [[ -n "${exit_code}" ]]; then
echo " $(blue "Completed")"
echo Terminating job
kubectl delete --namespace "${KUBECF_NAMESPACE}" "$(rotate_job_name)"

# shellcheck disable=SC2005
echo "$(green "OK")"
echo "$(green "OK [${exit_code}]")"
exit "${exit_code}"
fi
sleep 1
Expand Down

0 comments on commit 2e47fb4

Please sign in to comment.