cloud-barista / cb-ladybug

Cloud-Barista Multi-Cloud Application Runtime Framework : Support Multi-Cloud Kubernetes Service
Apache License 2.0
11 stars 11 forks source link

Support kubernetes addon management #120

Closed itnpeople closed 1 year ago

itnpeople commented 2 years ago

제공 Add-ons

API 추가

List Addons

{
  "kind": "AddonList",
  "items": [
    {
      "kind": "Addon",
      "name": "weave-scope",
      "version": "1.13.2",
      "status": "enabled"
    },
    {
      "kind": "Addon",
      "name": "metrics-server",
      "version": "0.5.2",
      "status": "disabled"
    },
    {
      "kind": "Addon",
      "name": "dashboard",
      "version": "2.4.0",
      "status": "disabled"
    }
  ]
}

Get Addon

{
  "kind": "Addon",
  "name": "weave-scope",
  "version": "1.13.2",
  "status": "enabled"
}

Install Addon

*[POST] /ns/:namespace/clusters/:cluster/addons/:addon

    {
      "kind": "Addon",
      "name": "weave-scope",
      "version": "1.13.2",
      "status": "enabled"
    }
    # or
    {
      "message": "already installed"
    }

Uninstall Addon

{
  "code": 1,
  "kind": "Addon",
  "message": "weave-scope has been uninstalled"
}
itnpeople commented 1 year ago

내부 논의를 통해 문서로 대체

https://github.com/cloud-barista/cb-mcks/wiki/Installing-Addons