Eugene Prokopiev
Eugene Prokopiev
See full log with single call in email from your github profile
Updated, looks like no problems with single call, will see with more calls ... Thank you!
Example of how to create apt-rpm index via rpm-python binding: ``` with open('repo/RPMS.classic/one-0.1-793.x86_64.rpm') as f: hdrRpm = rpm.ts().hdrFromFdno(f.fileno()) hdrNew = rpm.hdr() for tag in [100,1000,1001,1002,1004,1005,1006,1009,1016,1022,1044,1047,1048,1049,1050,1112,1113]: hdrNew[tag] = hdrRpm[tag] hdrNew[1000000] =...
So, only something like `fusermount -f` or even node reboot (both with data loss) is only one option for restore?
No need to do something with pv/pvc in this case? After umount I can just delete pod and it will be recreated by deployment with new name and mounted volume,...
Looks like removing cypress and ts-loader both from devDependencies section of package.json helps to build zip which works with index-management elasticsearch plugin
Example of how to create apt-rpm index via rpm-python binding: ``` with open('repo/RPMS.classic/one-0.1-793.x86_64.rpm') as f: hdrRpm = rpm.ts().hdrFromFdno(f.fileno()) hdrNew = rpm.hdr() for tag in [100,1000,1001,1002,1004,1005,1006,1009,1016,1022,1044,1047,1048,1049,1050,1112,1113]: hdrNew[tag] = hdrRpm[tag] hdrNew[1000000] =...
Run (with mount) example: ``` docker run --name k0s --hostname k0s --rm --privileged -v k0s:/var/lib/k0s \ -v $(pwd)/manifests:/var/lib/k0s/manifests \ -p 6443:6443 -p 80:80 docker.io/k0sproject/k0s k0s controller --single ``` Manifest files...
File name can be also used for stack name, why no? But idea is clear, thank you!