-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'nephio-project:main' into fix-porchctl-cmds
- Loading branch information
Showing
230 changed files
with
6,153 additions
and
13,893 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
.cache/ | ||
default.etcd/ | ||
apiserver.local.config/ | ||
__debug_bin* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: Dev Image Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- "docs/**" | ||
- "release/**" | ||
- ".prow.yaml" | ||
- "OWNERS" | ||
workflow_dispatch: | ||
|
||
env: | ||
REGISTRY: docker.io | ||
ORG: nephio | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build-and-push-image: | ||
if: github.repository_owner == 'nephio-project' | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- dockerfile: ./build/Dockerfile | ||
image: docker.io/nephio/porch-server | ||
- dockerfile: ./controllers/Dockerfile | ||
image: docker.io/nephio/porch-controllers | ||
- dockerfile: ./func/Dockerfile | ||
image: docker.io/nephio/porch-function-runner | ||
- dockerfile: ./func/Dockerfile-wrapperserver | ||
image: docker.io/nephio/porch-wrapper-server | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- name: Harden Runner | ||
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | ||
with: | ||
egress-policy: audit | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ vars.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1 | ||
|
||
- name: Extract metadata | ||
id: meta | ||
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1 | ||
with: | ||
images: ${{ matrix.image }} | ||
tags: | | ||
type=sha | ||
- name: Build and push Docker images | ||
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0 | ||
with: | ||
context: . | ||
file: ${{ matrix.dockerfile }} | ||
push: true | ||
tags: | | ||
${{ steps.meta.outputs.tags }} | ||
${{ matrix.image }}:latest | ||
labels: ${{ steps.meta.outputs.labels }} | ||
no-cache: true | ||
sbom: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,14 +18,12 @@ on: | |
paths-ignore: | ||
- "docs/**" | ||
- "release/**" | ||
- "deployments/**" | ||
- ".prow.yaml" | ||
- "OWNERS" | ||
pull_request: | ||
paths-ignore: | ||
- "docs/**" | ||
- "release/**" | ||
- "deployments/**" | ||
- ".prow.yaml" | ||
- "OWNERS" | ||
jobs: | ||
|
@@ -48,16 +46,18 @@ jobs: | |
uses: jaxxstorm/[email protected] | ||
with: | ||
repo: kptdev/kpt | ||
tag: v1.0.0-beta.49 | ||
tag: v1.0.0-beta.54 | ||
chmod: 0755 | ||
- name: Create k8s Kind Cluster | ||
uses: helm/kind-action@v1 | ||
with: | ||
cluster_name: kind | ||
version: v0.23.0 | ||
kubectl_version: v1.30.0 | ||
- name: Build Images and Deploy porch kpt pkg | ||
run: IMAGE_REPO=porch-kind IMAGE_TAG=${GITHUB_SHA:0:8} KIND_CONTEXT_NAME=kind make run-in-kind | ||
- name: Sleep for 15 seconds | ||
run: sleep 15s | ||
- name: Sleep for 30 seconds | ||
run: sleep 30s | ||
shell: bash | ||
- name: e2e test | ||
run: E2E=1 go test -v -timeout 20m ${GITHUB_WORKSPACE}/test/e2e | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,14 +18,12 @@ on: | |
paths-ignore: | ||
- "docs/**" | ||
- "release/**" | ||
- "deployments/**" | ||
- ".prow.yaml" | ||
- "OWNERS" | ||
pull_request: | ||
paths-ignore: | ||
- "docs/**" | ||
- "release/**" | ||
- "deployments/**" | ||
- ".prow.yaml" | ||
- "OWNERS" | ||
jobs: | ||
|
@@ -46,17 +44,18 @@ jobs: | |
uses: jaxxstorm/[email protected] | ||
with: | ||
repo: kptdev/kpt | ||
tag: v1.0.0-beta.49 | ||
tag: v1.0.0-beta.54 | ||
chmod: 0755 | ||
- name: Build and install porchctl | ||
run: | | ||
go build -o ${GITHUB_WORKSPACE}.build/ ./cmd/porchctl | ||
mv ${GITHUB_WORKSPACE}.build/porchctl /usr/local/bin/porchctl | ||
sudo chmod 755 /usr/local/bin/porchctl | ||
make porchctl | ||
.build/porchctl version | ||
- name: Create k8s Kind Cluster | ||
uses: helm/kind-action@v1 | ||
with: | ||
cluster_name: kind | ||
version: v0.23.0 | ||
kubectl_version: v1.30.0 | ||
- name: Build Images and Deploy porch kpt pkg | ||
run: IMAGE_REPO=porch-kind IMAGE_TAG=${GITHUB_SHA:0:8} KIND_CONTEXT_NAME=kind make run-in-kind | ||
- name: porchctl e2e test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.