Skip to content

Commit

Permalink
Signed-off-by: root <ystae@mantech.co.kr> (cncf#2071)
Browse files Browse the repository at this point in the history
μƒˆ 파일:       accordion/PRODUCT.yaml
	μƒˆ 파일:       accordion/README.md
	μƒˆ 파일:       accordion/e2e.log
	μƒˆ 파일:       accordion/junit_01.xml

Co-authored-by: root <ystae@mantech.co.kr>
  • Loading branch information
2 people authored and Tony Norlin committed Oct 25, 2024
1 parent 4a1619e commit 072e2fd
Show file tree
Hide file tree
Showing 4 changed files with 35,972 additions and 0 deletions.
8 changes: 8 additions & 0 deletions v1.23/accordion/PRODUCT.yaml
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.'
63 changes: 63 additions & 0 deletions v1.23/accordion/README.md
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
```
Loading

0 comments on commit 072e2fd

Please sign in to comment.