Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #56

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/podvm_on_pull.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: podvm_on_pull
on:
pull_request:

jobs:
podvm_builder:
uses: ./.github/workflows/podvm_builder.yaml
with:
#caa_src_ref: ${{ github.sha }}
caa_src_ref: ${{ github.ref }}
registry: ghcr.io/${{ github.repository_owner }}
secrets: inherit
podvm_binaries:
needs: [podvm_builder]
uses: ./.github/workflows/podvm_binaries.yaml
with:
#caa_src_ref: ${{ github.sha }}
caa_src_ref: ${{ github.ref }}
registry: ghcr.io/${{ github.repository_owner }}
builder_img_tag: ci-pr${{ github.event.number }}
secrets: inherit
podvm:
needs: [podvm_binaries]
uses: ./.github/workflows/podvm.yaml
with:
#caa_src_ref: ${{ github.sha }}
caa_src_ref: ${{ github.ref }}
registry: ghcr.io/${{ github.repository_owner }}
binaries_img_tag: ci-pr${{ github.event.number }}
secrets: inherit
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Introduction

This repository contains the implementation of Kata [remote hypervisor](https://github.com/kata-containers/kata-containers/tree/CCv0).
This repository contains the implementation of Kata Containers [remote hypervisor](https://github.com/kata-containers/kata-containers/tree/CCv0).
Kata remote hypervisor enables creation of Kata VMs on any environment without requiring baremetal servers or nested
virtualization support.

Expand Down
2 changes: 1 addition & 1 deletion podvm/Dockerfile.podvm_builder
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ FROM ubuntu:20.04

ARG GO_VERSION="1.20.7"
ARG PROTOC_VERSION="3.11.4"
ARG RUST_VERSION="1.69.0"
ARG RUST_VERSION="stable"
ARG YQ_VERSION="v4.35.1"
ARG YQ_CHECKSUM="sha256:bd695a6513f1196aeda17b174a15e9c351843fb1cef5f9be0af170f2dd744f08"

Expand Down
2 changes: 1 addition & 1 deletion podvm/Dockerfile.podvm_builder.centos
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ FROM quay.io/centos/centos:stream8

ARG GO_VERSION="1.20.7"
ARG PROTOC_VERSION="3.11.4"
ARG RUST_VERSION="1.69.0"
ARG RUST_VERSION="stable"
ARG YQ_VERSION="v4.35.1"
ARG YQ_CHECKSUM="sha256:bd695a6513f1196aeda17b174a15e9c351843fb1cef5f9be0af170f2dd744f08"

Expand Down
Loading