You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First off thank you Remington and Leonardo and everybody else who contributed for the awesome talk at Kubecon a few days ago.
I made an extension-installer container from the install.sh script and added an initContainer to run it. When it gets to the copy stage, there is this resources/ directory that it tries to copy out of, but that directory doesn't exist.
My volumeMounts are configured with /tmp/extensions/ as in the readme. Wondering if I'm I missing a step somewhere.
...
UI extension downloaded successfully
Installing the UI extension...
+ '[''!=' ]
+ echo'UI extension downloaded + install_extension+ echo 'Installing the UI extension...'+ cd /tmp/extension-HNnhil+ file --mime-type hello-world+ awk '{print $2}'+ local 'mime_type=application/gzip'+ '[' application/gzip '=' application/gzip ]+ tar -zxf hello-world tar: removing leading '../' from member names+ '[''!' -d /tmp/extensions/resources ]+ mkdir -p /tmp/extensions/resources+ cp -Rf 'resources/*' /tmp/extensions/resources/ cp: can't stat 'resources/*': No such file or directory
+ finalizer
...
I made a small change on my end and made a new image, which seems to work:
First off thank you Remington and Leonardo and everybody else who contributed for the awesome talk at Kubecon a few days ago.
I made an extension-installer container from the install.sh script and added an initContainer to run it. When it gets to the copy stage, there is this
resources/
directory that it tries to copy out of, but that directory doesn't exist.My volumeMounts are configured with
/tmp/extensions/
as in the readme. Wondering if I'm I missing a step somewhere.I made a small change on my end and made a new image, which seems to work:
The text was updated successfully, but these errors were encountered: