Remo E
Remo E
@Olipro , thanks for this fix.It installs now on my gentoo machine ;)
The browser doesn't support "Buffer". One need to add Buffer polyfill. On WebPack one can enable it with "Buffer: true": https://webpack.js.org/configuration/node/
Use this prometheus deployment as a base installation: https://github.com/coreos/prometheus-operator/tree/master/contrib/kube-prometheus/manifests Here is a working sample: Add this to haproxy-ingress manifest: ```yaml apiVersion: extensions/v1beta1 kind: DaemonSet metadata: labels: run: haproxy-ingress name: haproxy-ingress...
> Do you mean to provision a Grafana instance already with Prometheus datasource and the dashboard imported? yes, ```kubectl apply -R examples/metrics``` sample :) No ```helm``` please :) > The...
@MalloZup , I haven't done much with terraform, but i hope this helps: ```terraform resource "libvirt_volume" "os_image" { name = "os_image-${var.name}" source = "https://stable.release.core-os.net/amd64-usr/current/coreos_production_qemu_image.img.bz2" format = "bz2" } resource "libvirt_volume"...
another sample: https://github.com/AmpereComputing/terraform-openstack-images/blob/master/fedora/main.tf
I don't understand why this extraction of archives is not a base functionality of terraform.
sample update for fcos (tested with latest (1.18.2) fcos-typhoon): ```yaml # ... - name: kubelet.service # ... ExecStartPre=/bin/mkdir -p /var/mnt/kubernetes-local/drive0 ExecStart=/usr/bin/podman run --name kubelet \ # ... --volume /var/mnt/kubernetes-local/drive0:/var/mnt/kubernetes-local/drive0:z \...
Hi folks. I've tried to build lastest master with MoltenVK 1.1.85. I've changed the file FindVulkan.cmake from: ```set(Vulkan_LIBNAME vulkan)``` to ```set(Vulkan_LIBNAME MoltenVK)``` Then it builds a lot of files, but...
I've done a first try. Not all code compiles. It's only a rough skeleton: https://github.com/remoe/bsf/commit/e9fae5a04a75946a07b22db4f8c1ba17782ebb96 @BearishSun can you please shortly look at it? I need to know if i go...