3 comments

  • k8sify22 minutes ago
    Can’t wait to play with this, thank you great work!
    • realexweb14 minutes ago
      thanks.. let me know how it goes or if you hit any issues
  • jeffbee53 minutes ago
    It looks cool and I am building it r.n. but the submission title was a little misleading as it says "container ... runtime" right there, and I guess it is, but it is not a CRI implementation.
    • realexweb39 minutes ago
      Fair, and it&#x27;s not CRI. The README&#x27;s limits section says &quot;Not a Kubernetes runtime. No CRI. Use containerd or CRI-O.&quot; I meant runtime in the docker&#x2F;podman sense, pull and build and lifecycle in one binary, and you&#x27;re right that the word is overloaded enough that the title doesn&#x27;t carry that by itself.<p>Since you&#x27;re building it, two things you&#x27;ll hit before you hit the docs. cargo install needs the package name, because it searches the whole repo and finds three packages with binaries (the CLI, the fuzz harness, the Windows shim):<p>cargo install --git <a href="https:&#x2F;&#x2F;github.com&#x2F;getkern&#x2F;kern" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;getkern&#x2F;kern</a> getkern --locked<p>And a source build is 1.91 MB, not the 1.5 in the title. The release binary is smaller because CI builds it with a pinned nightly, build-std and optimize_for_size, on an opt-level=&quot;z&quot; profile; the source stays plain stable Rust on purpose, so building doesn&#x27;t need nightly.<p>Interested in what breaks.
  • realexweb2 hours ago
    [flagged]