From 08b0e6723fba7f83cd19a62f499ad4e76a40fcb4 Mon Sep 17 00:00:00 2001 From: Linus Sehn Date: Mon, 18 Jul 2022 15:16:30 +0200 Subject: [PATCH] Try bitnami image with older openldap --- .drone.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.drone.yml b/.drone.yml index 4bdeeef..2423cdd 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,3 +1,24 @@ +--- +kind: pipeline +type: docker +name: test LDAP connection + +clone: + disable: true + +node: + cont: test + +steps: + - name: test innernet connections from meitner + pull: if-not-exists + image: bitnami/openldap:2.4 + environment: + LDAP_PW_FRED: + from_secret: ldap_pw_fred + commands: + - ldapwhoami -vvv -h 10.200.64.9 -p 389 -D uid=fred.bloggs,ou=fellowship,dc=fsfe,dc=org -x -w $LDAP_PW_FRED + --- kind: pipeline type: docker