Signed-off-by: Accordion <ystae@mantech.co.kr> Co-authored-by: Accordion <ystae@mantech.co.kr> |
||
---|---|---|
.. | ||
PRODUCT.yaml | ||
README.md | ||
e2e.log | ||
junit_01.xml |
README.md
Accordion
Install Accordion v2.6.0 (based on Kubernetes v1.26.6) and create a cluster
Use regular ansible playbook command to create a cluster.
If you need an installation package, please request it by e-mail.
$ vi group_vars/hostyml
# master isolation ( yes / no )
master_isolation: "yes"
master_host_name: "yst-master"
master_ip: 10.60.200.175
master_mode "no"
$ vi etc/hosts
10.60.200.175 acc-master
10.60.200.176 acc-node1
10.60.200.177 acc-node2
Accordion 3 nodes cluster:
[root@acc-master1 accordion]# k get node -o wide
NAME STATUS ROLES AGE VERSION INTERNAL-IP EXTERNAL-IP OS-IMAGE KERNEL-VERSION CONTAINER-RUNTIME
yst-master Ready control-plane 45d v1.26.6 10.60.200.175 <none> CentOS Linux 7 (Core) 3.10.0-1160.92.1.el7.x86_64 containerd://1.6.21
yst-node1 Ready worker 45d v1.26.6 10.60.200.176 <none> CentOS Linux 7 (Core) 3.10.0-1160.92.1.el7.x86_64 containerd://1.6.21
yst-node2 Ready worker 45d v1.26.6 10.60.200.177 <none> CentOS Linux 7 (Core) 3.10.0-1160.92.1.el7.x86_64 containerd://1.6.21
Run Conformance Tests
$ k8s_version=v1.26
$ prod_name=accordion
$ go get -u -v github.com/vmware-tanzu/sonobuoy
$ sonobuoy run --mode=certified-conformance --wait
$ outfile=$(sonobuoy retrieve)
$ mkdir ./results; tar xzf $outfile -C ./results
$ mkdir -p ./${k8s_version}/${prod_name}
$ cp ./results/plugins/e2e/results/global/* ./${k8s_version}/${prod_name}/
$ cat << EOF > ./${k8s_version}/${prod_name}/PRODUCT.yaml
vendor: Mantech
name: Accordion
version: v2.6.0
website_url: https://accordions.co.kr/kube_eng/
documentation_url: https://demo.accordions.co.kr/docs/
product_logo_url: https://training.accordions.co.kr/assets/images/mantech-accordion.svg
type: distribution
description: 'Accordion Kubernetes Platform help you to orchestrate containerized workloads for your DevOps practices & CI/CD pipelines, delivering enhanced developer productivity and accelerating time to market.'
EOF