-
Notifications
You must be signed in to change notification settings - Fork 20
Description
We are deploying custom packs in AKS using Helm and custom pack image is build using below docker file:
dockerfile:
FROM stackstorm/st2packs:builder AS builder
COPY stackstorm-st2 /tmp/stackstorm-st2/
RUN ls -la /tmp/stackstorm-st2
RUN /opt/stackstorm/st2/bin/st2-pack-install file:///tmp/stackstorm-st2/custom_pack
FROM stackstorm/st2packs:runtime
We are running pipeline to build docker image and then running BlackDuck scan and finally deploying in AKS.
Till 20 Sep 2022 is was working as expected and from 22 Sep 2022 onwards we started getting below error when running packs:
{
"stdout": "",
"stderr": "/opt/stackstorm/virtualenvs/custome_pack/bin/python: /lib/x86_64-linux-gnu/libm.so.6: version 'GLIBC_2.29' Not found" (required by /opt/stackstorm/virtualenvs/custome_pack/bin/python)\n/opt/stackstorm/virtualenvs/custome_pack/bin/python: /lib/x86_64-linux-gnu/libc.so.6: version 'GLIBC_2.28' Not found (required by /opt/stackstorm/virtualenvs/custome_pack/bin/python)\n,
"exit_code":1,
""result": "None"
}
In order to analyze it we deployed the same custom pack(Image build with same packs) build before 21st September its not giving any error however when we rebuild the same code and create new image, post deployment of the newly created image packs start giving error as mentioned above.
One more thing even our BlackDuck scan started failing for the newly created Images.
as we using below image in order to create custom Image, We suspect some issue with this image:
stackstorm/st2packs:builder
stackstorm/st2packs:runtime
Could someone please help me for this.