-
Notifications
You must be signed in to change notification settings - Fork 41
Conversation
08d3528
to
b4f831d
Compare
26e6e28
to
1266145
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Blocking merge due to fissile using a PR build
Jenkinsfile
Outdated
@@ -63,7 +63,9 @@ void runTest(String testName) { | |||
value = "tcp.#{domain}" if env['name'] == 'TCP_DOMAIN' | |||
env['value'] = value.to_s | |||
|
|||
env['valueFrom']['secretKeyRef']['name'] = capsecret if env['valueFrom'] && env['valueFrom']['secretKeyRef'] | |||
if env['name'] != 'CLUSTER_ADMIN_PASSWORD' && env['name'] != 'UAA_ADMIN_CLIENT_SECRET' && env['name'] != 'UAA_CA_CERT' | |||
env['valueFrom']['secretKeyRef']['name'] = capsecret if env['valueFrom'] && env['valueFrom']['secretKeyRef'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having a foo if bar
inside a if …
seems kind of weird. (But I would have also done something like unless %w(CLUSTER_ADMIN_PASSWORD UAA_ADMIN_CLIENT_SECRET UAA_CA_CERT).include? env['name']
or a case
statement)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed in c6581db
bin/dev/install_tools.sh
Outdated
@@ -7,7 +7,7 @@ set -vx | |||
SCF_BIN_DIR="${SCF_BIN_DIR:-output/bin}" | |||
|
|||
# Tool locations | |||
s3="https://cf-opensusefs2.s3.amazonaws.com/fissile" | |||
s3="https://cf-opensusefs2.s3.amazonaws.com/fissile/checks" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Reminder to not merge with the checks
in place)
338b3bd
to
e3c4d6e
Compare
e3c4d6e
to
1d4c201
Compare
No description provided.