File tree 3 files changed +76
-20
lines changed
builds/build-secrets/s2i-binary-dir/.s2i/bin
3 files changed +76
-20
lines changed Original file line number Diff line number Diff line change 22
22
23
23
mkdir -p " ${HOME} /testconfig"
24
24
if [[ -f /tmp/configmap/foo ]]; then
25
- # Copy three secrets defined in configmap1 fixture to directory
25
+ # Copy three configMap entries defined in configmap1 fixture to directory
26
26
cp /tmp/configmap/* " ${HOME} /testconfig"
27
27
else
28
28
echo " Unable to locate test-configmap fixture files"
31
31
32
32
mkdir -p " ${HOME} /testconfig2"
33
33
if [[ -f configmap2/foo ]]; then
34
- # Copy three secrets defined in configmap2 fixture to directory
34
+ # Copy three configMap entries defined in configmap2 fixture to directory
35
35
cp configmap2/* " ${HOME} /testconfig2"
36
36
else
37
37
echo " Unable to locate test-configmap-2 fixture files"
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# Ensure none of the build config inject secrets still exist in the file system
4
- for s in /tmp/secret? secret? ; do
5
- if [[ -s " ${s} " ]]; then
6
- echo " Found secret file which should have been removed: ${s} "
4
+
5
+ secrets=(secret1 secret2 secret3)
6
+ configMaps=(foo this red)
7
+
8
+ function checkSecret() {
9
+ dir=$1
10
+ file=$2
11
+ if [[ -a " ${dir} /${file} " ]]; then
12
+ if [[ -s " ${dir} /${file} " ]]; then
13
+ echo " Found secret file which should have been truncated: ${dir} /${file} "
14
+ exit 1
15
+ fi
16
+ else
17
+ echo " Secret file ${file} is missing from ${dir} ."
7
18
exit 1
8
19
fi
9
- done
20
+ }
10
21
11
- for c in /tmp/configmap/* configmap2/* ; do
12
- if [[ ! -s " ${c} " ]]; then
13
- echo " Found configmap file which should not have been truncated: ${s} "
14
- exit 2
22
+ function checkConfigMap() {
23
+ dir=$1
24
+ file=$2
25
+ if [[ -a " ${dir} /${file} " ]]; then
26
+ if [[ ! -s " ${dir} /${file} " ]]; then
27
+ echo " Found empty configMap file which should not have been truncated: ${dir} /${file} "
28
+ exit 1
29
+ fi
30
+ else
31
+ echo " ConfigMap file ${file} is missing from ${dir} ."
32
+ exit 1
15
33
fi
34
+ }
35
+
36
+ for s in ${secrets[@]} ; do
37
+ checkSecret " /tmp" $s
38
+ checkSecret " ." $s
39
+ done
40
+
41
+ for c in ${configMaps[@]} ; do
42
+ checkConfigMap " /tmp/configmap" $c
43
+ checkConfigMap " configmap2" $c
16
44
done
17
45
18
46
# Print out the secrets copied into the image during assemble
You can’t perform that action at this time.
0 commit comments