Skip to content
Draft
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM scratch

# Download Ubuntu 22.04 cloud image
ADD https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img /disk/
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.PHONY: all
all:
docker build -t ubuntu22:0.0.1 .
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# SPDX-FileCopyrightText: 2025 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
---
specSchema: "Application"
schemaVersion: "0.1"
$schema: "https://schema.intel.com/catalog.orchestrator/0.1/schema"

name: httpbin-tc
version: 0.1.6
description: "Helm chart to install httpbingo.org on Kubernetes."
displayName: "HttpBin Go"

helmRegistry: "harbor-helm-oci"
chartName: "httpbin"
chartVersion: "0.1.6"

profiles:
- name: "default"
valuesFileName: "values-httpbin-tc.yaml"
---
specSchema: "Application"
schemaVersion: "0.1"
$schema: "https://schema.intel.com/catalog.orchestrator/0.1/schema"

name: "ubuntu22-nginx-vm"
version: 0.1.0
description: "A demo VM running nginx in Ubuntu 22.04"

imageRegistry: "harbor-docker-oci"
helmRegistry: "harbor-helm-oci"
chartName: "kubevirt-vm"
chartVersion: "0.4.18"

profiles:
- name: "default"
valuesFileName: "values-ubuntu22-nginx-vm.yaml"
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# SPDX-FileCopyrightText: 2025 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0

---
specSchema: "DeploymentPackage"
schemaVersion: "0.1"
$schema: "https://schema.intel.com/catalog.orchestrator/0.1/schema"

name: "tc-with-vm-ingress"
displayName: "TC with VM Ingress"
description: "Deployment package for TC with VM Ingress sample"
version: "0.1.0"


applications:
- name: "ubuntu22-nginx-vm"
version: 0.1.0
- name: "httpbin-tc"
version: 0.1.6

defaultNamespaces:
"httpbin-tc": "httpbin-tc"
"ubuntu22-nginx-vm": "ubuntu22-nginx-vm"

deploymentProfiles:
- name: "default"
applicationProfiles:
- application: "httpbin-tc"
profile: "default"
- application: "ubuntu22-nginx-vm"
profile: "default"
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# SPDX-FileCopyrightText: (C) 2025 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
---
fullnameOverride: httpbin

runtimeClassName: kata-qemu

service:
# -- Service type
type: LoadBalancer
# -- Service port
port: 8080

# -- Service annotations
annotations:
service-proxy.app.orchestrator.io/ports: "8080"
Loading