kata-containers/tests/integration/kubernetes/runtimeclass_workloads/replication-controller.yaml
Fabiano Fidêncio 0831081399
ci: k8s: Replace nginx alpine images
The previous ones are gone, so let's switch to our own multi-arch image
for the tests.

Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
2024-08-17 12:19:33 +02:00

27 lines
512 B
YAML

#
# Copyright (c) 2019 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
apiVersion: v1
kind: ReplicationController
metadata:
name: replicationtest
spec:
replicas: 1
selector:
app: nginx-rc-test
template:
metadata:
name: nginx
labels:
app: nginx-rc-test
spec:
terminationGracePeriodSeconds: 0
runtimeClassName: kata
containers:
- name: nginxtest
image: quay.io/fidencio/${nginx_version}
ports:
- containerPort: 80