forked from cncf/k8s-conformance
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: root <ystae@mantech.co.kr> (cncf#2071)
μ νμΌ: accordion/PRODUCT.yaml μ νμΌ: accordion/README.md μ νμΌ: accordion/e2e.log μ νμΌ: accordion/junit_01.xml Co-authored-by: root <ystae@mantech.co.kr>
- Loading branch information
1 parent
4a1619e
commit 072e2fd
Showing
4 changed files
with
35,972 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
vendor: Mantech | ||
name: Accordion | ||
version: v2.2.1 | ||
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.' |
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,63 @@ | ||
# Accordion | ||
|
||
|
||
## Install Accordion v2.2.1 (based on Kubernetes v1.23.8) 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: "acc-master" | ||
master_ip: 10.60.200.241 | ||
master_mode "no" | ||
``` | ||
``` | ||
$ vi etc/hosts | ||
10.60.200.241 acc-master | ||
10.60.200.242 acc-node1 | ||
10.60.200.243 acc-node2 | ||
``` | ||
|
||
### Accordion 3 nodes cluster: | ||
|
||
``` | ||
[root@acc-master group_vars]# k get node -o wide | ||
NAME STATUS ROLES AGE VERSION INTERNAL-IP EXTERNAL-IP OS-IMAGE KERNEL-VERSION CONTAINER-RUNTIME | ||
acc-master Ready control-plane,master 2d16h v1.23.8 10.60.200.241 <none> CentOS Linux 7 (Core) 3.10.0-1160.el7.x86_64 containerd://1.6.6 | ||
acc-node1 Ready worker 2d16h v1.23.8 10.60.200.242 <none> CentOS Linux 7 (Core) 3.10.0-1160.el7.x86_64 containerd://1.6.6 | ||
acc-node2 Ready worker 2d16h v1.23.8 10.60.200.243 <none> CentOS Linux 7 (Core) 3.10.0-1160.el7.x86_64 containerd://1.6.6 | ||
``` | ||
|
||
|
||
## Run Conformance Tests | ||
``` | ||
$ k8s_version=v1.23 | ||
$ 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.2.1 | ||
website_url: https://accordions.co.kr/kube_eng/ | ||
documentation_url: https://demo.accordions.co.kr/docs/ | ||
product_logo_url: https://drive.google.com/file/d/1HR9tMR01rlztd__S7kMcREo3aZDcguCq/view?usp=sharing | ||
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 | ||
``` |
Oops, something went wrong.