Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
Description
I noticed while investigating FLINK-36544 that the uid/gid values are switched around. uid gets assigned to the user's gid, and gid to the user's uid. This doesn't seem to cause a functional problem for me, but this appears to be wrong.
generate_olm_bundle() {
uid="$(id -g ${USER})" # Should be -u
gid="$(id -u ${USER})" # Should be -g
cp -r ../../helm ./
docker build -t "${OLMTOOL_IMG}" -f utils.Dockerfile ${BASEDIR}
docker run --user="${uid}:${gid}" -v ${BASEDIR}:/olm "${OLMTOOL_IMG}"
rm -rf helm
}
Attachments
Issue Links
- links to