Skip to content

wlynch/levias

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

levias

Proof-of-concept running docker-in-docker without priviledge in Kubernetes.

Currently Pods use privilege: true in order to talk to the host to attach containers to the current pod. Ephemeral containers (stable as of k8s 1.25) gives us a mechanism to have a similar behavior using k8s API primatives.

Levias provides an alternative [moby(https://github.com/moby/moby/blob/master/api/README.md)] implementation that:

  1. Wraps the the buildkit TCP API implementation with OIDC credentials
  2. Implements a server that transforms buildkit API requests to ephemeral containers.
sequenceDiagram
    participant Pod
    participant Client as Levias Client
    Pod->>Client: docker run
    Client->>Client: Add OIDC creds
    Client->>Controller: docker run
    participant Controller as Levias Controller
    Controller->>Controller: Verify OIDC
    Controller->>Pod: Attach ephemeral container
Loading

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages