From b36b751f38d9dd703731726cb71f83fae28782be Mon Sep 17 00:00:00 2001 From: Teresa Ho Date: Thu, 31 Mar 2022 08:40:22 -0400 Subject: [PATCH] FluxCD app Istio and helm charts configuration This commit introduces the application Istio which is to be manually uploaded. The istio-helm and kiali-helm repackages the helm charts from the upstream Istio and Kiali. The stx-istio-helm packages these charts into the fluxCD app. Test Plan: Pass: Centos: istio application uploaded manually Pass: Debian build successful Story: 2009912 Task: 44929 Change-Id: Ie0badb9a8d8de7fe63a82bc04c676bee90b2fb3d Signed-off-by: Teresa Ho --- .zuul.yaml | 140 ++++++++ CONTRIBUTING.rst | 16 + HACKING.rst | 17 + centos_build_layer.cfg | 1 + centos_iso_image.inc | 1 + centos_pkg_dirs | 4 + centos_pkg_dirs_containers | 2 + centos_tarball-dl.lst | 2 + debian_build_layer.cfg | 1 + debian_pkg_dirs | 4 + istio-helm/centos/build_srpm.data | 9 + istio-helm/centos/istio-helm.spec | 58 ++++ istio-helm/debian/deb_folder/changelog | 5 + istio-helm/debian/deb_folder/control | 17 + istio-helm/debian/deb_folder/copyright | 41 +++ .../debian/deb_folder/istio-helm.install | 1 + istio-helm/debian/deb_folder/rules | 29 ++ istio-helm/debian/deb_folder/source/format | 1 + istio-helm/debian/meta_data.yaml | 15 + istio-helm/files/Makefile | 43 +++ istio-helm/files/index.yaml | 3 + istio-helm/files/metadata.yaml | 0 istio-helm/files/repositories.yaml | 12 + kiali-helm/centos/build_srpm.data | 7 + kiali-helm/centos/kiali-helm.spec | 39 +++ kiali-helm/debian/deb_folder/changelog | 5 + kiali-helm/debian/deb_folder/control | 16 + kiali-helm/debian/deb_folder/copyright | 41 +++ .../debian/deb_folder/kiali-helm.install | 1 + kiali-helm/debian/deb_folder/rules | 19 ++ kiali-helm/debian/deb_folder/source/format | 1 + kiali-helm/debian/meta_data.yaml | 15 + kiali-helm/files/Makefile | 43 +++ kiali-helm/files/index.yaml | 3 + kiali-helm/files/metadata.yaml | 3 + kiali-helm/files/repositories.yaml | 12 + python-k8sapp-istio/centos/build_srpm.data | 8 + .../centos/python-k8sapp-istio.spec | 52 +++ .../debian/deb_folder/changelog | 5 + python-k8sapp-istio/debian/deb_folder/control | 26 ++ .../debian/deb_folder/copyright | 41 +++ .../python3-k8sapp-istio-wheels.install | 1 + .../deb_folder/python3-k8sapp-istio.install | 2 + python-k8sapp-istio/debian/deb_folder/rules | 26 ++ .../debian/deb_folder/source/format | 1 + python-k8sapp-istio/debian/meta_data.yaml | 7 + python-k8sapp-istio/k8sapp_istio/.gitignore | 35 ++ python-k8sapp-istio/k8sapp_istio/.stestr.conf | 4 + python-k8sapp-istio/k8sapp_istio/LICENSE | 202 +++++++++++ python-k8sapp-istio/k8sapp_istio/README.rst | 7 + .../k8sapp_istio/k8sapp_istio/__init__.py | 0 .../k8sapp_istio/common/__init__.py | 0 .../k8sapp_istio/common/constants.py | 17 + .../k8sapp_istio/helm/__init__.py | 0 .../k8sapp_istio/k8sapp_istio/helm/istio.py | 42 +++ .../k8sapp_istio/k8sapp_istio/helm/kiali.py | 42 +++ .../k8sapp_istio/tests/__init__.py | 0 .../k8sapp_istio/tests/test_istio.py | 19 ++ .../k8sapp_istio/tests/test_plugins.py | 43 +++ python-k8sapp-istio/k8sapp_istio/pylint.rc | 320 ++++++++++++++++++ .../k8sapp_istio/requirements.txt | 2 + python-k8sapp-istio/k8sapp_istio/setup.cfg | 40 +++ python-k8sapp-istio/k8sapp_istio/setup.py | 12 + .../k8sapp_istio/test-requirements.txt | 22 ++ python-k8sapp-istio/k8sapp_istio/tox.ini | 142 ++++++++ .../k8sapp_istio/upper-constraints.txt | 1 + requirements.txt | 1 + stx-istio-helm/centos/build_srpm.data | 20 ++ stx-istio-helm/centos/stx-istio-helm.spec | 83 +++++ stx-istio-helm/debian/deb_folder/changelog | 5 + stx-istio-helm/debian/deb_folder/control | 20 ++ stx-istio-helm/debian/deb_folder/copyright | 41 +++ stx-istio-helm/debian/deb_folder/rules | 55 +++ .../debian/deb_folder/source/format | 1 + .../debian/deb_folder/stx-istio-helm.install | 1 + stx-istio-helm/debian/meta_data.yaml | 12 + stx-istio-helm/stx-istio-helm/files/Makefile | 43 +++ .../stx-istio-helm/files/index.yaml | 3 + .../stx-istio-helm/files/metadata.yaml | 6 + .../stx-istio-helm/files/repositories.yaml | 12 + .../fluxcd-manifests/base/helmrepository.yaml | 13 + .../fluxcd-manifests/base/kustomization.yaml | 8 + .../fluxcd-manifests/base/namespace.yaml | 10 + .../istio-operator/helmrelease.yaml | 36 ++ .../istio-operator-static-overrides.yaml | 45 +++ .../istio-operator-system-overrides.yaml | 6 + .../istio-operator/kustomization.yaml | 18 + .../kiali-server/helmrelease.yaml | 36 ++ .../kiali-server-static-overrides.yaml | 17 + .../kiali-server-system-overrides.yaml | 6 + .../kiali-server/kustomization.yaml | 18 + .../fluxcd-manifests/kustomization.yaml | 13 + .../stx-istio-helm/helm-charts/Makefile | 43 +++ test-requirements.txt | 3 + tox.ini | 52 +++ 95 files changed, 2373 insertions(+) create mode 100644 .zuul.yaml create mode 100644 CONTRIBUTING.rst create mode 100644 HACKING.rst create mode 100644 centos_build_layer.cfg create mode 100644 centos_iso_image.inc create mode 100644 centos_pkg_dirs create mode 100644 centos_pkg_dirs_containers create mode 100644 centos_tarball-dl.lst create mode 100644 debian_build_layer.cfg create mode 100644 debian_pkg_dirs create mode 100644 istio-helm/centos/build_srpm.data create mode 100644 istio-helm/centos/istio-helm.spec create mode 100644 istio-helm/debian/deb_folder/changelog create mode 100644 istio-helm/debian/deb_folder/control create mode 100644 istio-helm/debian/deb_folder/copyright create mode 100644 istio-helm/debian/deb_folder/istio-helm.install create mode 100755 istio-helm/debian/deb_folder/rules create mode 100644 istio-helm/debian/deb_folder/source/format create mode 100644 istio-helm/debian/meta_data.yaml create mode 100644 istio-helm/files/Makefile create mode 100644 istio-helm/files/index.yaml create mode 100644 istio-helm/files/metadata.yaml create mode 100644 istio-helm/files/repositories.yaml create mode 100644 kiali-helm/centos/build_srpm.data create mode 100644 kiali-helm/centos/kiali-helm.spec create mode 100644 kiali-helm/debian/deb_folder/changelog create mode 100644 kiali-helm/debian/deb_folder/control create mode 100644 kiali-helm/debian/deb_folder/copyright create mode 100644 kiali-helm/debian/deb_folder/kiali-helm.install create mode 100755 kiali-helm/debian/deb_folder/rules create mode 100644 kiali-helm/debian/deb_folder/source/format create mode 100644 kiali-helm/debian/meta_data.yaml create mode 100644 kiali-helm/files/Makefile create mode 100644 kiali-helm/files/index.yaml create mode 100644 kiali-helm/files/metadata.yaml create mode 100644 kiali-helm/files/repositories.yaml create mode 100644 python-k8sapp-istio/centos/build_srpm.data create mode 100644 python-k8sapp-istio/centos/python-k8sapp-istio.spec create mode 100644 python-k8sapp-istio/debian/deb_folder/changelog create mode 100644 python-k8sapp-istio/debian/deb_folder/control create mode 100644 python-k8sapp-istio/debian/deb_folder/copyright create mode 100644 python-k8sapp-istio/debian/deb_folder/python3-k8sapp-istio-wheels.install create mode 100644 python-k8sapp-istio/debian/deb_folder/python3-k8sapp-istio.install create mode 100755 python-k8sapp-istio/debian/deb_folder/rules create mode 100644 python-k8sapp-istio/debian/deb_folder/source/format create mode 100644 python-k8sapp-istio/debian/meta_data.yaml create mode 100644 python-k8sapp-istio/k8sapp_istio/.gitignore create mode 100644 python-k8sapp-istio/k8sapp_istio/.stestr.conf create mode 100644 python-k8sapp-istio/k8sapp_istio/LICENSE create mode 100644 python-k8sapp-istio/k8sapp_istio/README.rst create mode 100644 python-k8sapp-istio/k8sapp_istio/k8sapp_istio/__init__.py create mode 100644 python-k8sapp-istio/k8sapp_istio/k8sapp_istio/common/__init__.py create mode 100644 python-k8sapp-istio/k8sapp_istio/k8sapp_istio/common/constants.py create mode 100644 python-k8sapp-istio/k8sapp_istio/k8sapp_istio/helm/__init__.py create mode 100644 python-k8sapp-istio/k8sapp_istio/k8sapp_istio/helm/istio.py create mode 100644 python-k8sapp-istio/k8sapp_istio/k8sapp_istio/helm/kiali.py create mode 100644 python-k8sapp-istio/k8sapp_istio/k8sapp_istio/tests/__init__.py create mode 100644 python-k8sapp-istio/k8sapp_istio/k8sapp_istio/tests/test_istio.py create mode 100644 python-k8sapp-istio/k8sapp_istio/k8sapp_istio/tests/test_plugins.py create mode 100644 python-k8sapp-istio/k8sapp_istio/pylint.rc create mode 100644 python-k8sapp-istio/k8sapp_istio/requirements.txt create mode 100644 python-k8sapp-istio/k8sapp_istio/setup.cfg create mode 100644 python-k8sapp-istio/k8sapp_istio/setup.py create mode 100644 python-k8sapp-istio/k8sapp_istio/test-requirements.txt create mode 100644 python-k8sapp-istio/k8sapp_istio/tox.ini create mode 100644 python-k8sapp-istio/k8sapp_istio/upper-constraints.txt create mode 100644 requirements.txt create mode 100644 stx-istio-helm/centos/build_srpm.data create mode 100644 stx-istio-helm/centos/stx-istio-helm.spec create mode 100644 stx-istio-helm/debian/deb_folder/changelog create mode 100644 stx-istio-helm/debian/deb_folder/control create mode 100644 stx-istio-helm/debian/deb_folder/copyright create mode 100755 stx-istio-helm/debian/deb_folder/rules create mode 100644 stx-istio-helm/debian/deb_folder/source/format create mode 100644 stx-istio-helm/debian/deb_folder/stx-istio-helm.install create mode 100644 stx-istio-helm/debian/meta_data.yaml create mode 100644 stx-istio-helm/stx-istio-helm/files/Makefile create mode 100644 stx-istio-helm/stx-istio-helm/files/index.yaml create mode 100644 stx-istio-helm/stx-istio-helm/files/metadata.yaml create mode 100644 stx-istio-helm/stx-istio-helm/files/repositories.yaml create mode 100644 stx-istio-helm/stx-istio-helm/fluxcd-manifests/base/helmrepository.yaml create mode 100644 stx-istio-helm/stx-istio-helm/fluxcd-manifests/base/kustomization.yaml create mode 100644 stx-istio-helm/stx-istio-helm/fluxcd-manifests/base/namespace.yaml create mode 100644 stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/helmrelease.yaml create mode 100644 stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/istio-operator-static-overrides.yaml create mode 100644 stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/istio-operator-system-overrides.yaml create mode 100644 stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/kustomization.yaml create mode 100644 stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/helmrelease.yaml create mode 100644 stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/kiali-server-static-overrides.yaml create mode 100644 stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/kiali-server-system-overrides.yaml create mode 100644 stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/kustomization.yaml create mode 100644 stx-istio-helm/stx-istio-helm/fluxcd-manifests/kustomization.yaml create mode 100644 stx-istio-helm/stx-istio-helm/helm-charts/Makefile create mode 100644 test-requirements.txt create mode 100644 tox.ini diff --git a/.zuul.yaml b/.zuul.yaml new file mode 100644 index 0000000..45ac9d6 --- /dev/null +++ b/.zuul.yaml @@ -0,0 +1,140 @@ +--- +- project: + check: + jobs: + - openstack-tox-linters + - k8sapp-istio-tox-py39 + - k8sapp-istio-tox-pylint + gate: + jobs: + - openstack-tox-linters + - k8sapp-istio-tox-py39 + - k8sapp-istio-tox-pylint + post: + jobs: + - stx-app-istio-upload-git-mirror + +- job: + name: k8sapp-istio-tox-py39 + parent: tox-py39 + description: | + Run py39 for istio app + nodeset: debian-bullseye + required-projects: + - starlingx/config + - starlingx/fault + - starlingx/update + - starlingx/utilities + files: + - python-k8sapp-istio/* + vars: + tox_envlist: py39 + python_version: 3.9 + tox_extra_args: -c python-k8sapp-istio/k8sapp_istio/tox.ini +- job: + name: stx-app-istio-upload-git-mirror + parent: upload-git-mirror + description: > + Mirrors opendev.org/starlingx/app-istio to + github.com/starlingx/app-istio + vars: + git_mirror_repository: starlingx/app-istio + secrets: + - name: git_mirror_credentials + secret: stx-app-istio-github-secret + pass-to-parent: true + +- job: + name: k8sapp-istio-tox-pylint + parent: tox + description: | + Run pylint test for k8sapp_istio + required-projects: + - starlingx/config + - starlingx/fault + - starlingx/update + - starlingx/utilities + files: + - python-k8sapp-istio/* + vars: + tox_envlist: pylint + tox_extra_args: -c python-k8sapp-istio/k8sapp_istio/tox.ini + +- secret: + name: stx-app-istio-github-secret + data: + user: git + host: github.com + # yamllint disable-line rule:line-length + host_key: github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== + ssh_key: !encrypted/pkcs1-oaep + - uJ96flNEMXi9KiL2weGx6TZ9NqnxkZkGzpanXhQc1+RirONRqippiqMgV8PsriADiZ2eY + a0UtJsMh5Ck9KVHbju14Mg0irL27lgT2vyaTMIT9uMK91CxjmnDAqOISYxjzvCLVQ5Wmf + /gp2du6uvD0tSCWeHfeYHcVveIPLkL2f3+19fmQc3WkWS91fXqJxgIAaTdDChblwM+K1C + zAYZ7Ww82ZNnV/AAsY8Cs+ePLt/RVV9BmvJa45qhpRwoNgIlHvi9gCtZssfXWqByCkdsf + hTqeVtpfbr6T0b7Yw8q3Z0stsQMJhphRQMDAlzo3IPjaOLdNBbc81JhHHkBVlmOqMJLv0 + 22pJ5U21ENfvvC6JYO8MgPnHUUA0XBENMGWgBnig3mgCqP3mptNst1cRwB4gPUbrbkhep + JAlAKbRo8c/s9r1FuotitCGOhhZTb9dtDr/09hQ5KxWOgP27p+GlUJPdJZyphZPbZvHSO + w2YXhJa1xk+s2Q6a33Sl9z4esrMOyvYt1NuThXZ4rUZ5UpxlWqV0yPu+gznO060FBTW1U + gYo01Ze9o2Zi0oCKpkEsqVicW8HK6IJj1hR6wvL4mpFwc9FBgCLLHAe3c77KhYDlbwWq/ + 6Aq6vk6jCUELFLp4eSi+buxcP0BVqFdLfX4uANqnLZMxOjfLC6b1COJzJu091A= + - wkZM86gkmeVngfuJJ1/30EAblhtVbQVNohAW4JuL/U+OJE9PkN7Qe59wemxKdBaDS7aSD + IRP+eiWblX7YsjZjlcneEGhvYjgcmyIh1lRr9+3vMbItPqzycBLEVPig6JkJTcLc8zo9g + xBLdE5cAyLA+1xd+bNYbLrIJ7lXjvloAn6rV7Z4yfWoDWsXQdzAdunqCO9x+JNlBxrkBP + ZrOeMU0VRtI+Fts8tPWRsK9kmsP30meSNEBDtq1+qoohyWzQvwr6xjRd/NusMXntDP76t + bOfgiH1ffQgVPqt6Q+w8T/bAtuT6g+l4JGW2jJSMBrBsTzPLYmP90IrwHXMakGdo+xGq+ + VKjwc/ZCzqujuW6Kaj00PCydG3E2zcxKpt92wJZgmrZz8qzZDn/bovYrBTfj1ObWonA96 + y/pdb2vgL8UMqJQOhiGegb1d9nuUxbeEu6rGdKuJuyY9X3UW1l1BV1/8f1LO6uy4/7Gem + ekGB/m8Of30xeYF7hTuGN7mvue3IZodQ1VZRQRzfHdWxwkctT8qdLrsjYoUBXqlKQBGXQ + aKvl06dI/MYFmdm1hX3cDY3rduoSCNZHUpbgOvcPPRwVaVg4ywIlCfHih2vS3ONRlB9mf + Cf0G3hYQpQbBZKVLKB6vdGZffUKSlGAs+CSl1W3aN/wxLLz9bycgSgyrcVlKlw= + - u/N5doXd435Boagmw2CfWNfSWEt/LjOO8i46Cv00PPZlagrZQU7QBwQtN0365B+qtf05W + peG15NoMR8solFGE2q8yaq7HhmokjLyoUzB/oGAaHyTjv8GMZmRjR04WxgeoKufVBeviy + DtOmH3k7RFg2X2Fmwt8vobxZUKM0wa7TW1f9QjUqqdQy+1CQoMf/9XpE8P2oPTUGwmlvN + qUfHzb4NB5dm7Fb2B3ghUp0/Ed9hIrFr3ojyDT9MPrtIkGFy4fdX1uBWjBhsPp6BLPVgE + jcUYOgJU0XRuzjINB4MB3FxOoTno5fzx7cPP5IcMf1pE2NNUR9SNH2d8F7908jUThtLga + 8BHcAngVHxRnsBRXR9Pba7L8Ri9dRcHtgGelmN/sjOufr+kx218CdPE5SfTrKOl3v0nUx + husD+p/F7KAov3hl0QPoZsagWwxGkoVdvj7WcimwfTfRKNlTcUbD1WlyaVRzgzIpuWGaT + iSe18uWPMKbEVtFFAMPCLIXWGAr7TvJMJx49nXxi+VMlYtOf7PBlBo42q+m3mtJmJ95Td + UrOVDGwNdZTIJlUlC64hqL9mzDZ5Hsjd6yoqSGWNSstybLA3/dxy+N+Zq6VDYMp71HUjn + G8R1l1gNeUMc8U4KWpYRsMwoMxxOoVh11+PNWe2M2LwIKm/0sLCO1LpJt0MGgU= + - nrGZjUMXQzTDRbpagnchDwf5uD9vYW+VDwd5orQpL3TtV25sfQaZ2IcEB24iE1R3L675b + lBnDb567l9eULtfWjTLiJyzXNgirVgtJQJGRG+5tGQo+Nc+SPPuLSpbjO1rWvNk3UKoyC + KLw1oTsqJCh15UNUwmTimIxgfj0E1Mua3aLbOMtq6ZflXQygqMDI/10X/++M3PJ43zNDX + VUywiSAFw2x15ffaW7Rz09Cd6BQVY1Dw3BJ6NcVwKPW28O5NWFm4Ar2C9oGnIVSjoR6df + 6uYhy98WV/ch+LLzwv0Ab0VmOl+rDyEC+k62hdeUuaukFfoBure7Cl3r5F2VcFtx5aUlK + 6Z+1+yymmgPKEkl69XCviHdMrB65pgTteEGKuYkBlyPLMsSY7Lf5SsMZZ/F5qjO+eTTRU + ZTddxMgTocnpxi0Yi1aqADtaunVaAjP2jU4sx2LhrVWV2DhWlJd4i5J3tO57F/1qNkohB + 8kH7t1Igy8u6eG/2AfZq4d8W5iIC1jnBzToM+4c36H3+eUhTkrYemceVPMZraPZ14vEJ8 + W58XFTQIklqDNxHUbWMDQp4kGXVP4YWJVOmLUyZOTlQRcJMG5x0sPAKKKyhMx8G6DKbiI + LAYVHL3UX7YQxwD/XBwMGi9Bop2/QXBRkTbKVyUnPNlBd/hdMud7+kkyrw/uK0= + - sO+oh6tYU25f65SKqXG/wDUpXZPYNbOkZsQ2Nd1DDo5YP6cdkgM+6GZc1DZk9AyclYpv5 + bkoSw/SFus6CLKU7haafpBjkH5Gs25+Nlyr2YvNLadF13ygEUmnUlWshOjacU1y3m31Xe + HhvSqlORYkR4YYQ0lNvunxeVEhp03mz/TABYSWHpBv/YTwxaOpYm5W5vAE1wY93wbUFaN + NmxT5JSKfpO4tbClJq2pGyegqMZsj3SP9y4FLzINcmXUnwWocZMiVoHPiFahvpeUQqyh3 + e7idjpQ38vqtV0vJ2vZPbLLI4t/p2mBvAciZ6O1gJG78FJn+w0KDOoRR+5XyuY+niNV0I + NiliGTGxctb9i27WocaF7Duf3bhsqo9xt4vjeCndPCqYGvOwljcLHR4R8SpU/kPMf+7oc + 2qhoSLMnTkbBhecqwpty0q6yjr5JmkT+aePP6idZJVlYpRCjxvMaAI7/h932f8dGd8btc + ARhVJ9FC4mie2Z5lXQVH7RTUsHrGdqL7B/mvZl+Hy6DaoVju0GgE50RxWOG5tBgYbByHs + B3orNlPalWSh3wg2/CzpKlXO1L8BuNtJW8vg5GGHstz0VLFwDxwQCgCJSi2sKHkopRrlb + TkGvGc4fPjfnq5p5A8ULBFoYLlYRFzcqrug17b+CP4aW2swekDT+4F75R9ZlLM= + - NneY9FI+6RVhp1/jVbpWlzccD3iOtNfQnaBUqG8yvCNR4oua01LNuRnCm3NFSgM/99Ny6 + y/qJHsbsjr5xM2YYqOuCT6IdNReDzUChmhBg95CEFQ79ezgH8IbnDZWVtdFmW4b+GD3v/ + jbdYVTk9k5fWRiazRTfbXEcTCwt9/H2eWLlS5bnKKwiyy4KccWfMXBZFNawtpbrhS3gE8 + Nw8OOviNObd50dnafCVS2Cu4VSM2AkUznLMo5As+y22dAbGrCsrGh1NxnmzytAkyCbTbm + v/bZHjBx9UUAOmp6TeA/cE/n/fEuolDp+hkRpn27J74IAYX0JBXRiHbUkj0q9v9XlYfsB + VvXW/5qFJ8dzoCNRTyioYkNZbq4GMGR3Wwd8s55D7/SzMwXklzgll2VQbpcM9W0F3WCzy + KExAoLhEtyDCePTLO1Rwsb4Z9VdX9thyjdlZXp+RP0piUT8aWxxnqqVskCSmFHS8WMDSe + jG569IAkWRtJNcDcfEYxvwBu1LZmu3jP6bB4DoTuGfWAl2yV95vbPFNBaajSWeBu3wFZW + XiWYr/B90ciL6sVo2x2/4qk/QPNGtawXC/XtZw1hdDmgwZFhIZyeE31uLkwPEmZHwhFoq + iC13MRPFvNxOuFtg0ElX76DjQWGeHZzwHlYCKuLOYszQeZczNv86a5D6qdjPgM= + - RWtSse5UTID783aDj5ck0HrsvRRriD/p89icCRCMqG8v9Of8BvzC9W4QoqE+7kWQrYqIk + 1omVns/uJx7MQh3C+P15HTU4M9Y9MM3yRwwUrcVi5HfEjTa/yqxEKo9CFOzZmEXxTa/3a + Hh2AGgMrz2NmmzXrgLKxbpN83p+YSHnPlavxyJHZWSCAqFOu00FJal3dWwr3u8UZxu/jW + FxpblxK3oh9Kg1CVr0jQ0ddqCFwGzW1IRAbIj/V5paHVK8NnU7aFJaw5lIpGJ9SewnLof + zvnHEGiGMXOfWyhMFE6DuPn4mXEC4ymTU3myKZ7rYwRs5JL9My7ZwuqjkhgQQlKiNLrpD + cwrfeQf2FuXRnGAYLcJmpygYpnlVhYLDZWzFSJLcjsOasTMXwGgUaNPCEQU8BtUBaQjcP + maIvVCyVV4OYomRcEEYyYGju+xQ58kJfkCsugLoqB3SySWYn6ouBWiAWoI+fAMWC3+4j9 + R4gZaigNGQGbDDVgKW5RQ009Br8ZdNJBVBzWZ8BJMVLDOf2QNEi4vDk44pOdaPBj+oCzH + 23lkrNWhCAZJ8ycP28iUSCPo3RacK77xcPx7ED8yRD8/o/n/0z5uNlBAZdRmONlC9HbRZ + zcjXXgPxhjxEtJR4WD/V90+9QPwQNqqZZEOhtVZRfo4evM3Djsj9uRlGB7Ooz8= diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst new file mode 100644 index 0000000..f2f8e6d --- /dev/null +++ b/CONTRIBUTING.rst @@ -0,0 +1,16 @@ +If you would like to contribute to the development of OpenStack, +you must follow the steps in this page: + + https://docs.openstack.org/infra/manual/developers.html + +Once those steps have been completed, changes to OpenStack +should be submitted for review via the Gerrit tool, following +the workflow documented at: + + https://docs.openstack.org/infra/manual/developers.html#development-workflow + +Pull requests submitted through GitHub will be ignored. + +Bugs should be filed in Launchpad: + + https://bugs.launchpad.net/starlingx diff --git a/HACKING.rst b/HACKING.rst new file mode 100644 index 0000000..c5480b3 --- /dev/null +++ b/HACKING.rst @@ -0,0 +1,17 @@ +StarlingX App-Istio Style Commandments +========================================================= + +- Step 1: Read the OpenStack style commandments + https://docs.openstack.org/hacking/latest/ +- Step 2: Read on + +App-Istio Specific Commandments +--------------------------------------------------------- + +None so far + +Running tests +------------- +The approach to running tests is to simply run the command ``tox``. This will +create virtual environments, populate them with dependencies and run all of +the tests that OpenStack CI systems run. diff --git a/centos_build_layer.cfg b/centos_build_layer.cfg new file mode 100644 index 0000000..c581999 --- /dev/null +++ b/centos_build_layer.cfg @@ -0,0 +1 @@ +flock diff --git a/centos_iso_image.inc b/centos_iso_image.inc new file mode 100644 index 0000000..0071e03 --- /dev/null +++ b/centos_iso_image.inc @@ -0,0 +1 @@ +stx-istio-helm-fluxcd diff --git a/centos_pkg_dirs b/centos_pkg_dirs new file mode 100644 index 0000000..83383f4 --- /dev/null +++ b/centos_pkg_dirs @@ -0,0 +1,4 @@ +istio-helm +kiali-helm +stx-istio-helm +python-k8sapp-istio diff --git a/centos_pkg_dirs_containers b/centos_pkg_dirs_containers new file mode 100644 index 0000000..0d43ac7 --- /dev/null +++ b/centos_pkg_dirs_containers @@ -0,0 +1,2 @@ +stx-istio-helm +python-k8sapp-istio diff --git a/centos_tarball-dl.lst b/centos_tarball-dl.lst new file mode 100644 index 0000000..6f07015 --- /dev/null +++ b/centos_tarball-dl.lst @@ -0,0 +1,2 @@ +helm-charts-istio-1.13.2.tar.gz#helm-charts-istio#https://github.com/istio/istio/archive/refs/tags/1.13.2.tar.gz#http## +helm-charts-kiali-1.45.0.tar.gz#helm-charts-kiali#https://github.com/kiali/helm-charts/archive/refs/tags/v1.45.0.tar.gz#http## diff --git a/debian_build_layer.cfg b/debian_build_layer.cfg new file mode 100644 index 0000000..c581999 --- /dev/null +++ b/debian_build_layer.cfg @@ -0,0 +1 @@ +flock diff --git a/debian_pkg_dirs b/debian_pkg_dirs new file mode 100644 index 0000000..4cc6e55 --- /dev/null +++ b/debian_pkg_dirs @@ -0,0 +1,4 @@ +istio-helm +kiali-helm +python-k8sapp-istio +stx-istio-helm diff --git a/istio-helm/centos/build_srpm.data b/istio-helm/centos/build_srpm.data new file mode 100644 index 0000000..8428f8b --- /dev/null +++ b/istio-helm/centos/build_srpm.data @@ -0,0 +1,9 @@ +TAR_NAME=helm-charts-istio +VERSION=1.13.2 +TAR="$TAR_NAME-$VERSION.tar.gz" + +COPY_LIST="${CGCS_BASE}/downloads/$TAR $PKG_BASE/files/* " + +OPT_DEP_LIST="$STX_BASE/app-istio/stx-istio-helm" + +TIS_PATCH_VER=PKG_GITREVCOUNT diff --git a/istio-helm/centos/istio-helm.spec b/istio-helm/centos/istio-helm.spec new file mode 100644 index 0000000..8bfe93f --- /dev/null +++ b/istio-helm/centos/istio-helm.spec @@ -0,0 +1,58 @@ +# Build variables +%global helm_folder /usr/lib/helm + +Summary: Istio helm charts +Name: istio-helm +Version: 1.13.2 +Release: %{tis_patch_ver}%{?_tis_dist} +License: Apache-2.0 +Group: base +Packager: Wind River +URL: unknown + +Source0: helm-charts-istio-%{version}.tar.gz +Source1: repositories.yaml +Source2: index.yaml +Source3: Makefile + +BuildArch: noarch + +BuildRequires: helm +BuildRequires: chartmuseum + +%description +StarlingX Istio Helm Charts + +%prep +%setup -n helm-charts-istio + +#%patch01 -p1 + +%build +# Host a server for the charts +chartmuseum --debug --port=8879 --context-path='/charts' --storage="local" --storage-local-rootdir="." & +sleep 2 +helm repo add local http://localhost:8879/charts + +# Create the tgz files +cp %{SOURCE3} manifests/charts +cd manifests/charts + +sed -i -e '/appVersion/ s/:.*$/: %{version}/' istio-operator/Chart.yaml +sed -i -e '/version/ s/:.*$/: %{version}/' istio-operator/Chart.yaml + +make istio-operator +# mv istio-operator-*.tgz istio-operator-%{version}.tgz + +cd - + +# terminate helm server (the last backgrounded task) +kill %1 + +%install +install -d -m 755 ${RPM_BUILD_ROOT}%{helm_folder} +install -p -D -m 755 manifests/charts/*.tgz ${RPM_BUILD_ROOT}%{helm_folder} + +%files +%defattr(-,root,root,-) +%{helm_folder}/* diff --git a/istio-helm/debian/deb_folder/changelog b/istio-helm/debian/deb_folder/changelog new file mode 100644 index 0000000..8824e24 --- /dev/null +++ b/istio-helm/debian/deb_folder/changelog @@ -0,0 +1,5 @@ +istio-helm (1.0-1) unstable; urgency=medium + + * Initial release. + + -- Teresa Ho Thu, 31 Mar 2022 08:40:22 +0000 diff --git a/istio-helm/debian/deb_folder/control b/istio-helm/debian/deb_folder/control new file mode 100644 index 0000000..1dbd099 --- /dev/null +++ b/istio-helm/debian/deb_folder/control @@ -0,0 +1,17 @@ +Source: istio-helm +Section: libs +Priority: optional +Maintainer: StarlingX Developers +Build-Depends: debhelper-compat (= 13), + chartmuseum, + helm, + procps +Standards-Version: 4.5.1 +Homepage: https://www.starlingx.io + +Package: istio-helm +Section: libs +Architecture: any +Depends: ${misc:Depends} +Description: StarlingX Istio Helm Charts + This package contains helm charts for the istio application. diff --git a/istio-helm/debian/deb_folder/copyright b/istio-helm/debian/deb_folder/copyright new file mode 100644 index 0000000..e602393 --- /dev/null +++ b/istio-helm/debian/deb_folder/copyright @@ -0,0 +1,41 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: istio-helm +Source: https://opendev.org/starlingx/app-istio/ + +Files: * +Copyright: (c) 2013-2022 Wind River Systems, Inc +License: Apache-2 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + https://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian-based systems the full text of the Apache version 2.0 license + can be found in `/usr/share/common-licenses/Apache-2.0'. + +# If you want to use GPL v2 or later for the /debian/* files use +# the following clauses, or change it to suit. Delete these two lines +Files: debian/* +Copyright: 2022 Wind River Systems, Inc +License: Apache-2 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + https://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian-based systems the full text of the Apache version 2.0 license + can be found in `/usr/share/common-licenses/Apache-2.0'. diff --git a/istio-helm/debian/deb_folder/istio-helm.install b/istio-helm/debian/deb_folder/istio-helm.install new file mode 100644 index 0000000..8a0c6de --- /dev/null +++ b/istio-helm/debian/deb_folder/istio-helm.install @@ -0,0 +1 @@ +usr/lib/helm/* diff --git a/istio-helm/debian/deb_folder/rules b/istio-helm/debian/deb_folder/rules new file mode 100755 index 0000000..a2c7c20 --- /dev/null +++ b/istio-helm/debian/deb_folder/rules @@ -0,0 +1,29 @@ +#!/usr/bin/make -f +# export DH_VERBOSE = 1 + +export ROOT = debian/tmp +export CHART_FOLDER = $(ROOT)/usr/lib/helm +export ISTIO_VERSION = 1.13.2 +export ISTIO_TARBALL="helm-charts-istio-1.13.2.tgz + +%: + dh $@ + +override_dh_auto_build: + # Host a server for the helm charts. + chartmuseum --debug --port=8879 --context-path='/charts' --storage="local" \ + --storage-local-rootdir="." & + sleep 2 + helm repo add local http://localhost:8879/charts + # Set up chart build files. + cp Makefile manifests/charts + # Create the TGZ file. + cd manifests/charts && make istio-operator + pkill chartmuseum + +override_dh_auto_install: + # Install the app tar file. + install -d -m 755 $(CHART_FOLDER) + install -p -D -m 755 manifests/charts/*.tgz $(CHART_FOLDER) + +override_dh_auto_test: diff --git a/istio-helm/debian/deb_folder/source/format b/istio-helm/debian/deb_folder/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/istio-helm/debian/deb_folder/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/istio-helm/debian/meta_data.yaml b/istio-helm/debian/meta_data.yaml new file mode 100644 index 0000000..f896867 --- /dev/null +++ b/istio-helm/debian/meta_data.yaml @@ -0,0 +1,15 @@ +--- +debname: istio-helm +debver: 1.0-1 +dl_path: + name: helm-charts-istio-1.13.2.tar.gz + url: https://github.com/istio/istio/archive/refs/tags/1.13.2.tar.gz + md5sum: d5b109c3332d10b7fb8214b0d23ff90b +src_files: + - istio-helm/files/index.yaml + - istio-helm/files/Makefile + - istio-helm/files/metadata.yaml + - istio-helm/files/repositories.yaml +revision: + dist: $STX_DIST + PKG_GITREVCOUNT: true diff --git a/istio-helm/files/Makefile b/istio-helm/files/Makefile new file mode 100644 index 0000000..50195f7 --- /dev/null +++ b/istio-helm/files/Makefile @@ -0,0 +1,43 @@ +# +# Copyright 2017 The Openstack-Helm Authors. +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# +# It's necessary to set this because some environments don't link sh -> bash. +SHELL := /bin/bash +TASK := build + +EXCLUDES := helm-toolkit doc tests tools logs tmp +CHARTS := helm-toolkit $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) + +.PHONY: $(EXCLUDES) $(CHARTS) + +all: $(CHARTS) + +$(CHARTS): + @if [ -d $@ ]; then \ + echo; \ + echo "===== Processing [$@] chart ====="; \ + make $(TASK)-$@; \ + fi + +init-%: + if [ -f $*/Makefile ]; then make -C $*; fi + if [ -f $*/requirements.yaml ]; then helm dep up $*; fi + +lint-%: init-% + if [ -d $* ]; then helm lint $*; fi + +build-%: + if [ -d $* ]; then helm package $*; fi + +clean: + @echo "Clean all build artifacts" + rm -f */templates/_partials.tpl */templates/_globals.tpl + rm -f *tgz */charts/*tgz */requirements.lock + rm -rf */charts */tmpcharts + +%: + @: diff --git a/istio-helm/files/index.yaml b/istio-helm/files/index.yaml new file mode 100644 index 0000000..36db709 --- /dev/null +++ b/istio-helm/files/index.yaml @@ -0,0 +1,3 @@ +apiVersion: v1 +entries: {} +generated: 2019-01-07T12:33:46.098166523-06:00 diff --git a/istio-helm/files/metadata.yaml b/istio-helm/files/metadata.yaml new file mode 100644 index 0000000..e69de29 diff --git a/istio-helm/files/repositories.yaml b/istio-helm/files/repositories.yaml new file mode 100644 index 0000000..e613b63 --- /dev/null +++ b/istio-helm/files/repositories.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +generated: 2019-01-02T15:19:36.215111369-06:00 +repositories: +- caFile: "" + cache: /builddir/.helm/repository/cache/local-index.yaml + certFile: "" + keyFile: "" + name: local + password: "" + url: http://127.0.0.1:8879/charts + username: "" + diff --git a/kiali-helm/centos/build_srpm.data b/kiali-helm/centos/build_srpm.data new file mode 100644 index 0000000..c1950f2 --- /dev/null +++ b/kiali-helm/centos/build_srpm.data @@ -0,0 +1,7 @@ +TAR_NAME=helm-charts-kiali +VERSION=1.45.0 +TAR="$TAR_NAME-$VERSION.tar.gz" + +COPY_LIST="${CGCS_BASE}/downloads/$TAR $PKG_BASE/files/* " + +TIS_PATCH_VER=PKG_GITREVCOUNT diff --git a/kiali-helm/centos/kiali-helm.spec b/kiali-helm/centos/kiali-helm.spec new file mode 100644 index 0000000..ed22e3f --- /dev/null +++ b/kiali-helm/centos/kiali-helm.spec @@ -0,0 +1,39 @@ +# Build variables +%global helm_folder /usr/lib/helm + +Summary: Kiali helm charts +Name: kiali-helm +Version: 1.45.0 +Release: %{tis_patch_ver}%{?_tis_dist} +License: Apache-2.0 +Group: base +Packager: Wind River +URL: unknown + +Source0: helm-charts-kiali-%{version}.tar.gz +Source1: repositories.yaml +Source2: index.yaml +Source3: Makefile + +BuildArch: noarch + +BuildRequires: helm + +%description +StarlingX Kiali Helm Charts + +%prep +%setup -n helm-charts-kiali + +%build +echo $PATH +make build-helm-charts + +%install +install -d -m 755 ${RPM_BUILD_ROOT}%{helm_folder} +install -p -D -m 755 _output/charts/*.tgz ${RPM_BUILD_ROOT}%{helm_folder} + + +%files +%defattr(-,root,root,-) +%{helm_folder}/* diff --git a/kiali-helm/debian/deb_folder/changelog b/kiali-helm/debian/deb_folder/changelog new file mode 100644 index 0000000..0a9a89b --- /dev/null +++ b/kiali-helm/debian/deb_folder/changelog @@ -0,0 +1,5 @@ +kiali-helm (1.0-1) unstable; urgency=medium + + * Initial release. + + -- Teresa Ho Thu, 31 Mar 2022 08:40:22 +0000 diff --git a/kiali-helm/debian/deb_folder/control b/kiali-helm/debian/deb_folder/control new file mode 100644 index 0000000..b341b17 --- /dev/null +++ b/kiali-helm/debian/deb_folder/control @@ -0,0 +1,16 @@ +Source: kiali-helm +Section: libs +Priority: optional +Maintainer: StarlingX Developers +Build-Depends: debhelper-compat (= 13), + helm, + procps +Standards-Version: 4.5.1 +Homepage: https://www.starlingx.io + +Package: kiali-helm +Section: libs +Architecture: any +Depends: ${misc:Depends} +Description: StarlingX Kiali Helm Charts + This package contains helm charts for the Kiali application. diff --git a/kiali-helm/debian/deb_folder/copyright b/kiali-helm/debian/deb_folder/copyright new file mode 100644 index 0000000..2584e6d --- /dev/null +++ b/kiali-helm/debian/deb_folder/copyright @@ -0,0 +1,41 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: kiali-helm +Source: https://opendev.org/starlingx/app-istio/ + +Files: * +Copyright: (c) 2013-2022 Wind River Systems, Inc +License: Apache-2 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + https://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian-based systems the full text of the Apache version 2.0 license + can be found in `/usr/share/common-licenses/Apache-2.0'. + +# If you want to use GPL v2 or later for the /debian/* files use +# the following clauses, or change it to suit. Delete these two lines +Files: debian/* +Copyright: 2022 Wind River Systems, Inc +License: Apache-2 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + https://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian-based systems the full text of the Apache version 2.0 license + can be found in `/usr/share/common-licenses/Apache-2.0'. diff --git a/kiali-helm/debian/deb_folder/kiali-helm.install b/kiali-helm/debian/deb_folder/kiali-helm.install new file mode 100644 index 0000000..8a0c6de --- /dev/null +++ b/kiali-helm/debian/deb_folder/kiali-helm.install @@ -0,0 +1 @@ +usr/lib/helm/* diff --git a/kiali-helm/debian/deb_folder/rules b/kiali-helm/debian/deb_folder/rules new file mode 100755 index 0000000..7bf5bcc --- /dev/null +++ b/kiali-helm/debian/deb_folder/rules @@ -0,0 +1,19 @@ +#!/usr/bin/make -f +# export DH_VERBOSE = 1 + +export ROOT = debian/tmp +export CHART_FOLDER = $(ROOT)/usr/lib/helm + +%: + dh $@ + +override_dh_auto_build: + # Create the TGZ file. + helm package kiali-server --app-version $(APP_VERSION) --version $(APP_VERSION) + +override_dh_auto_install: + # Install the app tar file. + install -d -m 755 $(CHART_FOLDER) + install -p -D -m 755 *.tgz $(CHART_FOLDER) + +override_dh_auto_test: diff --git a/kiali-helm/debian/deb_folder/source/format b/kiali-helm/debian/deb_folder/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/kiali-helm/debian/deb_folder/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/kiali-helm/debian/meta_data.yaml b/kiali-helm/debian/meta_data.yaml new file mode 100644 index 0000000..4bb98e8 --- /dev/null +++ b/kiali-helm/debian/meta_data.yaml @@ -0,0 +1,15 @@ +--- +debname: kiali-helm +debver: 1.0-1 +dl_path: + name: helm-charts-kiali-1.45.0.tar.gz + url: https://github.com/kiali/helm-charts/archive/refs/tags/v1.45.0.tar.gz + md5sum: 532122c65a60c3f256b151b9e0d83542 +src_files: + - files/index.yaml + - files/Makefile + - files/metadata.yaml + - files/repositories.yaml +revision: + dist: $STX_DIST + PKG_GITREVCOUNT: true diff --git a/kiali-helm/files/Makefile b/kiali-helm/files/Makefile new file mode 100644 index 0000000..7e6374f --- /dev/null +++ b/kiali-helm/files/Makefile @@ -0,0 +1,43 @@ +# +# Copyright 2017 The Openstack-Helm Authors. +# +# Copyright (c) 2012 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# +# It's necessary to set this because some environments don't link sh -> bash. +SHELL := /bin/bash +TASK := build + +EXCLUDES := helm-toolkit doc tests tools logs tmp +CHARTS := helm-toolkit $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) + +.PHONY: $(EXCLUDES) $(CHARTS) + +all: $(CHARTS) + +$(CHARTS): + @if [ -d $@ ]; then \ + echo; \ + echo "===== Processing [$@] chart ====="; \ + make $(TASK)-$@; \ + fi + +init-%: + if [ -f $*/Makefile ]; then make -C $*; fi + if [ -f $*/requirements.yaml ]; then helm dep up $*; fi + +lint-%: init-% + if [ -d $* ]; then helm lint $*; fi + +build-%: + if [ -d $* ]; then helm package $*; fi + +clean: + @echo "Clean all build artifacts" + rm -f */templates/_partials.tpl */templates/_globals.tpl + rm -f *tgz */charts/*tgz */requirements.lock + rm -rf */charts */tmpcharts + +%: + @: diff --git a/kiali-helm/files/index.yaml b/kiali-helm/files/index.yaml new file mode 100644 index 0000000..36db709 --- /dev/null +++ b/kiali-helm/files/index.yaml @@ -0,0 +1,3 @@ +apiVersion: v1 +entries: {} +generated: 2019-01-07T12:33:46.098166523-06:00 diff --git a/kiali-helm/files/metadata.yaml b/kiali-helm/files/metadata.yaml new file mode 100644 index 0000000..49f72b5 --- /dev/null +++ b/kiali-helm/files/metadata.yaml @@ -0,0 +1,3 @@ +app_name: @APP_NAME@ +app_version: @APP_VERSION@ +helm_repo: @HELM_REPO@ diff --git a/kiali-helm/files/repositories.yaml b/kiali-helm/files/repositories.yaml new file mode 100644 index 0000000..e613b63 --- /dev/null +++ b/kiali-helm/files/repositories.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +generated: 2019-01-02T15:19:36.215111369-06:00 +repositories: +- caFile: "" + cache: /builddir/.helm/repository/cache/local-index.yaml + certFile: "" + keyFile: "" + name: local + password: "" + url: http://127.0.0.1:8879/charts + username: "" + diff --git a/python-k8sapp-istio/centos/build_srpm.data b/python-k8sapp-istio/centos/build_srpm.data new file mode 100644 index 0000000..27e0bf3 --- /dev/null +++ b/python-k8sapp-istio/centos/build_srpm.data @@ -0,0 +1,8 @@ +SRC_DIR="k8sapp_istio" +OPT_DEP_LIST="$STX_BASE/app-istio/stx-istio-helm" + +# Keep the SRCREV in sync with stx-istio-helm so the app version is the same +# as the plugin version + +TIS_BASE_SRCREV=28fb552abeb93fce220528fa4e29027f8ff394f6 +TIS_PATCH_VER=GITREVCOUNT \ No newline at end of file diff --git a/python-k8sapp-istio/centos/python-k8sapp-istio.spec b/python-k8sapp-istio/centos/python-k8sapp-istio.spec new file mode 100644 index 0000000..ac27b4c --- /dev/null +++ b/python-k8sapp-istio/centos/python-k8sapp-istio.spec @@ -0,0 +1,52 @@ +%global app_name istio +%global pypi_name k8sapp-istio +%global sname k8sapp_istio + +Name: python-%{pypi_name} +Version: 1.0 +Release: %{tis_patch_ver}%{?_tis_dist} +Summary: StarlingX sysinv extensions: Istio + +License: Apache-2.0 +Source0: %{name}-%{version}.tar.gz + +BuildArch: noarch + +BuildRequires: python-setuptools +BuildRequires: python-pbr +BuildRequires: python2-pip +BuildRequires: python2-wheel + +%description +StarlingX sysinv extensions: Istio K8S app + +%prep +%setup +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +export PBR_VERSION=%{version} +%{__python2} setup.py build + +%py2_build_wheel + +%install +export PBR_VERSION=%{version}.%{tis_patch_ver} +export SKIP_PIP_INSTALL=1 +%{__python2} setup.py install --skip-build --root %{buildroot} +mkdir -p ${RPM_BUILD_ROOT}/plugins/%{app_name} +install -m 644 dist/*.whl ${RPM_BUILD_ROOT}/plugins/%{app_name}/ + +%files +%{python2_sitelib}/%{sname} +%{python2_sitelib}/%{sname}-*.egg-info + +%package wheels +Summary: %{name} wheels + +%description wheels +Contains python wheels for %{name} + +%files wheels +/plugins/* diff --git a/python-k8sapp-istio/debian/deb_folder/changelog b/python-k8sapp-istio/debian/deb_folder/changelog new file mode 100644 index 0000000..fff49bf --- /dev/null +++ b/python-k8sapp-istio/debian/deb_folder/changelog @@ -0,0 +1,5 @@ +python3-k8sapp-istio (1.0-1) unstable; urgency=medium + + * Initial release. + + -- Teresa Ho Thu, 31 Mar 2022 08:40:22 +000 diff --git a/python-k8sapp-istio/debian/deb_folder/control b/python-k8sapp-istio/debian/deb_folder/control new file mode 100644 index 0000000..a50a0d6 --- /dev/null +++ b/python-k8sapp-istio/debian/deb_folder/control @@ -0,0 +1,26 @@ +Source: python3-k8sapp-istio +Section: libs +Priority: optional +Maintainer: StarlingX Developers +Build-Depends: debhelper-compat (= 13), + dh-python, + python3-all, + python3-pbr, + python3-setuptools, + python3-wheel +Standards-Version: 4.5.1 +Homepage: https://www.starlingx.io + +Package: python3-k8sapp-istio +Section: libs +Architecture: any +Depends: ${misc:Depends}, ${python3:Depends} +Description: StarlingX Sysinv Istio Extensions + This package contains sysinv plugins for the istio K8S app. + +Package: python3-k8sapp-istio-wheels +Section: libs +Architecture: any +Depends: ${misc:Depends}, ${python3:Depends}, python3-wheel +Description: StarlingX Sysinv Istio Extension Wheels + This package contains python wheels for the istio K8S app plugins. diff --git a/python-k8sapp-istio/debian/deb_folder/copyright b/python-k8sapp-istio/debian/deb_folder/copyright new file mode 100644 index 0000000..14e973d --- /dev/null +++ b/python-k8sapp-istio/debian/deb_folder/copyright @@ -0,0 +1,41 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: python3-k8sapp-istio +Source: https://opendev.org/starlingx/app-istio/ + +Files: * +Copyright: (c) 2013-2022 Wind River Systems, Inc +License: Apache-2 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + https://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian-based systems the full text of the Apache version 2.0 license + can be found in `/usr/share/common-licenses/Apache-2.0'. + +# If you want to use GPL v2 or later for the /debian/* files use +# the following clauses, or change it to suit. Delete these two lines +Files: debian/* +Copyright: 2022 Wind River Systems, Inc +License: Apache-2 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + https://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian-based systems the full text of the Apache version 2.0 license + can be found in `/usr/share/common-licenses/Apache-2.0'. diff --git a/python-k8sapp-istio/debian/deb_folder/python3-k8sapp-istio-wheels.install b/python-k8sapp-istio/debian/deb_folder/python3-k8sapp-istio-wheels.install new file mode 100644 index 0000000..70ed88c --- /dev/null +++ b/python-k8sapp-istio/debian/deb_folder/python3-k8sapp-istio-wheels.install @@ -0,0 +1 @@ +plugins/istio/*.whl diff --git a/python-k8sapp-istio/debian/deb_folder/python3-k8sapp-istio.install b/python-k8sapp-istio/debian/deb_folder/python3-k8sapp-istio.install new file mode 100644 index 0000000..3dfda6b --- /dev/null +++ b/python-k8sapp-istio/debian/deb_folder/python3-k8sapp-istio.install @@ -0,0 +1,2 @@ +usr/lib/python3/dist-packages/k8sapp_istio-1.0.0.egg-info/* +usr/lib/python3/dist-packages/k8sapp_istio/* diff --git a/python-k8sapp-istio/debian/deb_folder/rules b/python-k8sapp-istio/debian/deb_folder/rules new file mode 100755 index 0000000..d1a9fc9 --- /dev/null +++ b/python-k8sapp-istio/debian/deb_folder/rules @@ -0,0 +1,26 @@ +#!/usr/bin/make -f +# export DH_VERBOSE = 1 + +export APP_NAME=istio +export PBR_VERSION=1.0.0 +export PYBUILD_NAME=k8sapp-istio +export ROOT=$(CURDIR)/debian/tmp +export SKIP_PIP_INSTALL=1 + +%: + dh $@ --with=python3 --buildsystem=pybuild + +override_dh_auto_build: + python3 setup.py build + +override_dh_auto_install: + python3 setup.py install --install-layout=deb --skip-build --root $(ROOT) + python3 setup.py bdist_wheel \ + --universal \ + -d $(ROOT)/plugins/$(APP_NAME) + +ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) +override_dh_auto_test: + # (tbogue) FIXME + PYTHONDIR=$(CURDIR) stestr run || true +endif diff --git a/python-k8sapp-istio/debian/deb_folder/source/format b/python-k8sapp-istio/debian/deb_folder/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/python-k8sapp-istio/debian/deb_folder/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/python-k8sapp-istio/debian/meta_data.yaml b/python-k8sapp-istio/debian/meta_data.yaml new file mode 100644 index 0000000..27c4367 --- /dev/null +++ b/python-k8sapp-istio/debian/meta_data.yaml @@ -0,0 +1,7 @@ +--- +debname: python3-k8sapp-istio +debver: 1.0-1 +src_path: k8sapp_istio +revision: + dist: $STX_DIST + PKG_GITREVCOUNT: true diff --git a/python-k8sapp-istio/k8sapp_istio/.gitignore b/python-k8sapp-istio/k8sapp_istio/.gitignore new file mode 100644 index 0000000..78c457c --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/.gitignore @@ -0,0 +1,35 @@ +# Compiled files +*.py[co] +*.a +*.o +*.so + +# Sphinx +_build +doc/source/api/ + +# Packages/installer info +*.egg +*.egg-info +dist +build +eggs +parts +var +sdist +develop-eggs +.installed.cfg + +# Other +*.DS_Store +.stestr +.testrepository +.tox +.venv +.*.swp +.coverage +bandit.xml +cover +AUTHORS +ChangeLog +*.sqlite diff --git a/python-k8sapp-istio/k8sapp_istio/.stestr.conf b/python-k8sapp-istio/k8sapp_istio/.stestr.conf new file mode 100644 index 0000000..123dd6a --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/.stestr.conf @@ -0,0 +1,4 @@ +[DEFAULT] +test_path=./k8sapp_istio/tests +top_dir=./k8sapp_istio +#parallel_class=True diff --git a/python-k8sapp-istio/k8sapp_istio/LICENSE b/python-k8sapp-istio/k8sapp_istio/LICENSE new file mode 100644 index 0000000..929bf20 --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2022 Wind River Systems, Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/python-k8sapp-istio/k8sapp_istio/README.rst b/python-k8sapp-istio/k8sapp_istio/README.rst new file mode 100644 index 0000000..a01367c --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/README.rst @@ -0,0 +1,7 @@ +k8sapp-istio +============ + +This project contains StarlingX Kubernetes application specific python plugins +for Istio. These plugins are required to integrate the istio application into +the StarlingX application framework and to support the various StarlingX +deployments. diff --git a/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/__init__.py b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/common/__init__.py b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/common/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/common/constants.py b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/common/constants.py new file mode 100644 index 0000000..efc0adb --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/common/constants.py @@ -0,0 +1,17 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +# Application Name +HELM_APP_ISTIO = 'istio' + +# Namespace to deploy the application +HELM_NS_ISTIO_OPERATOR = 'istio-operator' +HELM_NS_ISTIO_SYSTEM = 'istio-system' + +# Helm: Supported charts: +# These values match the names in the chart package's Chart.yaml +HELM_CHART_ISTIO_OPERATOR = 'istio-operator' +HELM_CHART_KIALI_SERVER = 'kiali-server' diff --git a/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/helm/__init__.py b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/helm/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/helm/istio.py b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/helm/istio.py new file mode 100644 index 0000000..bc3c8ac --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/helm/istio.py @@ -0,0 +1,42 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +from sysinv.common import exception +from sysinv.helm import base + +from k8sapp_istio.common import constants as app_constants + + +class IstioHelm(base.BaseHelm): + """Class to encapsulate helm operations for the istio chart""" + + SUPPORTED_NAMESPACES = base.BaseHelm.SUPPORTED_NAMESPACES + \ + [app_constants.HELM_NS_ISTIO_OPERATOR] + SUPPORTED_APP_NAMESPACES = { + app_constants.HELM_APP_ISTIO: + base.BaseHelm.SUPPORTED_NAMESPACES + + [app_constants.HELM_NS_ISTIO_OPERATOR] + } + + CHART = app_constants.HELM_CHART_ISTIO_OPERATOR + + SERVICE_NAME = app_constants.HELM_APP_ISTIO + + def get_namespaces(self): + return self.SUPPORTED_NAMESPACES + + def get_overrides(self, namespace=None): + overrides = { + app_constants.HELM_NS_ISTIO_OPERATOR: {} + } + + if namespace in self.SUPPORTED_NAMESPACES: + return overrides[namespace] + elif namespace: + raise exception.InvalidHelmNamespace(chart=self.CHART, + namespace=namespace) + else: + return overrides diff --git a/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/helm/kiali.py b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/helm/kiali.py new file mode 100644 index 0000000..9f084da --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/helm/kiali.py @@ -0,0 +1,42 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +from sysinv.common import exception +from sysinv.helm import base + +from k8sapp_istio.common import constants as app_constants + + +class KialiHelm(base.BaseHelm): + """Class to encapsulate helm operations for the Kiali chart""" + + SUPPORTED_NAMESPACES = base.BaseHelm.SUPPORTED_NAMESPACES + \ + [app_constants.HELM_NS_ISTIO_SYSTEM] + SUPPORTED_APP_NAMESPACES = { + app_constants.HELM_APP_ISTIO: + base.BaseHelm.SUPPORTED_NAMESPACES + + [app_constants.HELM_NS_ISTIO_SYSTEM], + } + + CHART = app_constants.HELM_CHART_KIALI_SERVER + + SERVICE_NAME = app_constants.HELM_APP_ISTIO + + def get_namespaces(self): + return self.SUPPORTED_NAMESPACES + + def get_overrides(self, namespace=None): + overrides = { + app_constants.HELM_NS_ISTIO_SYSTEM: {} + } + + if namespace in self.SUPPORTED_NAMESPACES: + return overrides[namespace] + elif namespace: + raise exception.InvalidHelmNamespace(chart=self.CHART, + namespace=namespace) + else: + return overrides diff --git a/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/tests/__init__.py b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/tests/test_istio.py b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/tests/test_istio.py new file mode 100644 index 0000000..1a32cba --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/tests/test_istio.py @@ -0,0 +1,19 @@ +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +from k8sapp_istio.tests import test_plugins + +from sysinv.db import api as dbapi +from sysinv.tests.db import utils as dbutils +from sysinv.tests.helm import base + + +class IstioTestCase(test_plugins.K8SAppIstioAppMixin, + base.HelmTestCaseMixin): + + def setUp(self): + super(IstioTestCase, self).setUp() + self.app = dbutils.create_test_app(name='istio') + self.dbapi = dbapi.get_instance() diff --git a/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/tests/test_plugins.py b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/tests/test_plugins.py new file mode 100644 index 0000000..62d551c --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/k8sapp_istio/tests/test_plugins.py @@ -0,0 +1,43 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +from k8sapp_istio.common import constants as app_constants +from sysinv.tests.helm.test_helm import HelmOperatorTestSuiteMixin + +from sysinv.tests.db import base as dbbase + + +class K8SAppIstioAppMixin(object): + app_name = app_constants.HELM_APP_ISTIO + path_name = app_name + '.tgz' + + def setUp(self): + super(K8SAppIstioAppMixin, self).setUp() + + +# Test Configuration: +# - Controller +# - IPv6 +# - Ceph Storage +# - istio app +class K8SAppIstioControllerTestCase(K8SAppIstioAppMixin, + dbbase.BaseIPv6Mixin, + dbbase.BaseCephStorageBackendMixin, + HelmOperatorTestSuiteMixin, + dbbase.ControllerHostTestCase): + pass + + +# Test Configuration: +# - AIO +# - IPv4 +# - Ceph Storage +# - istio app +class K8SAppIstioAIOTestCase(K8SAppIstioAppMixin, + dbbase.BaseCephStorageBackendMixin, + HelmOperatorTestSuiteMixin, + dbbase.AIOSimplexHostTestCase): + pass diff --git a/python-k8sapp-istio/k8sapp_istio/pylint.rc b/python-k8sapp-istio/k8sapp_istio/pylint.rc new file mode 100644 index 0000000..5892deb --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/pylint.rc @@ -0,0 +1,320 @@ +[MASTER] +# Specify a configuration file. +rcfile=pylint.rc + +# Python code to execute, usually for sys.path manipulation such as +# pygtk.require(). +#init-hook= + +# Add files or directories to the blacklist. Should be base names, not paths. +ignore=tests + +# Pickle collected data for later comparisons. +persistent=yes + +# List of plugins (as comma separated values of python modules names) to load, +# usually to register additional checkers. +load-plugins= + +# Use multiple processes to speed up Pylint. +jobs=4 + +# Allow loading of arbitrary C extensions. Extensions are imported into the +# active Python interpreter and may run arbitrary code. +unsafe-load-any-extension=no + +# A comma-separated list of package or module names from where C extensions may +# be loaded. Extensions are loading into the active Python interpreter and may +# run arbitrary code +extension-pkg-whitelist=lxml.etree,greenlet + + + +[MESSAGES CONTROL] +# Enable the message, report, category or checker with the given id(s). You can +# either give multiple identifier separated by comma (,) or put this option +# multiple time. +# +# Python3 checker: +# +# E1601: print-statement +# E1602: parameter-unpacking +# E1603: unpacking-in-except +# E1604: old-raise-syntax +# E1605: backtick +# E1606: long-suffix +# E1607: old-ne-operator +# E1608: old-octal-literal +# E1609: import-star-module-level +# E1610: non-ascii-bytes-literal +# E1611: invalid-unicode-literal +# W1601: apply-builtin +# W1602: basestring-builtin +# W1603: buffer-builtin +# W1604: cmp-builtin +# W1605: coerce-builtin +# W1606: execfile-builtin +# W1607: file-builtin +# W1608: long-builtin +# W1609: raw_input-builtin +# W1610: reduce-builtin +# W1611: standarderror-builtin +# W1612: unicode-builtin +# W1613: xrange-builtin +# W1614: coerce-method +# W1615: delslice-method +# W1616: getslice-method +# W1617: setslice-method +# W1618: no-absolute-import +# W1619: old-division +# W1620: dict-iter-method +# W1621: dict-view-method +# W1622: next-method-called +# W1623: metaclass-assignment +# W1624: indexing-exception +# W1625: raising-string +# W1626: reload-builtin +# W1627: oct-method +# W1628: hex-method +# W1629: nonzero-method +# W1630: cmp-method +# W1632: input-builtin +# W1633: round-builtin +# W1634: intern-builtin +# W1635: unichr-builtin +# W1636: map-builtin-not-iterating +# W1637: zip-builtin-not-iterating +# W1638: range-builtin-not-iterating +# W1639: filter-builtin-not-iterating +# W1640: using-cmp-argument +# W1641: eq-without-hash +# W1642: div-method +# W1643: idiv-method +# W1644: rdiv-method +# W1645: exception-message-attribute +# W1646: invalid-str-codec +# W1647: sys-max-int +# W1648: bad-python3-import +# W1649: deprecated-string-function +# W1650: deprecated-str-translate-call +# W1651: deprecated-itertools-function +# W1652: deprecated-types-field +# W1653: next-method-defined +# W1654: dict-items-not-iterating +# W1655: dict-keys-not-iterating +# W1656: dict-values-not-iterating +# W1657: deprecated-operator-function +# W1658: deprecated-urllib-function +# W1659: xreadlines-attribute +# W1660: deprecated-sys-function +# W1661: exception-escape +# W1662: comprehension-escape +enable=E1603,E1609,E1610,E1602,E1606,E1608,E1607,E1605,E1604,E1601,E1611,W1652, + W1651,W1649,W1657,W1660,W1658,W1659,W1623,W1622,W1620,W1621,W1645,W1641, + W1624,W1648,W1625,W1611,W1662,W1661,W1650,W1640,W1630,W1614,W1615,W1642, + W1616,W1628,W1643,W1629,W1627,W1644,W1617,W1601,W1602,W1603,W1604,W1605, + W1654,W1655,W1656,W1619,W1606,W1607,W1639,W1618,W1632,W1634,W1608,W1636, + W1653,W1646,W1638,W1609,W1610,W1626,W1633,W1647,W1635,W1612,W1613,W1637 + +# Disable the message, report, category or checker with the given id(s). You +# can either give multiple identifier separated by comma (,) or put this option +# multiple time (only on the command line, not in the configuration file where +# it should appear only once). +# See "Messages Control" section of +# https://pylint.readthedocs.io/en/latest/user_guide +# We are disabling (C)onvention +# We are disabling (R)efactor +# W0212: protected-access +# W1618: no-absolute-import +disable=C, R, W0212, W1618 + +[REPORTS] +# Set the output format. Available formats are text, parseable, colorized, msvs +# (visual studio) and html +output-format=text + +# Put messages in a separate file for each module / package specified on the +# command line instead of printing them on stdout. Reports (if any) will be +# written in a file name "pylint_global.[txt|html]". +files-output=no + +# Tells whether to display a full report or only the messages +reports=yes + +# Python expression which should return a note less than 10 (10 is the highest +# note). You have access to the variables errors warning, statement which +# respectively contain the number of errors / warnings messages and the total +# number of statements analyzed. This is used by the global evaluation report +# (RP0004). +evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) + + +[SIMILARITIES] +# Minimum lines number of a similarity. +min-similarity-lines=4 + +# Ignore comments when computing similarities. +ignore-comments=yes + +# Ignore docstrings when computing similarities. +ignore-docstrings=yes + + +[FORMAT] +# Maximum number of characters on a single line. +max-line-length=85 + +# Maximum number of lines in a module +max-module-lines=1000 + +# String used as indentation unit. This is usually 4 spaces or "\t" (1 tab). +indent-string=' ' + + +[TYPECHECK] +# Tells whether missing members accessed in mixin class should be ignored. A +# mixin class is detected if its name ends with "mixin" (case insensitive). +ignore-mixin-members=yes + +# List of module names for which member attributes should not be checked +# (useful for modules/projects where namespaces are manipulated during runtime +# and thus existing member attributes cannot be deduced by static analysis +ignored-modules=distutils,eventlet.green.subprocess,six,six.moves + +# List of classes names for which member attributes should not be checked +# (useful for classes with attributes dynamically set). +# pylint is confused by sqlalchemy Table, as well as sqlalchemy Enum types +# ie: (unprovisioned, identity) +# LookupDict in requests library confuses pylint +ignored-classes=SQLObject, optparse.Values, thread._local, _thread._local, + Table, unprovisioned, identity, LookupDict + +# List of members which are set dynamically and missed by pylint inference +# system, and so shouldn't trigger E0201 when accessed. Python regular +# expressions are accepted. +generated-members=REQUEST,acl_users,aq_parent + + +[BASIC] +# List of builtins function names that should not be used, separated by a comma +bad-functions=map,filter,apply,input + +# Regular expression which should only match correct module names +module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ + +# Regular expression which should only match correct module level names +const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ + +# Regular expression which should only match correct class names +class-rgx=[A-Z_][a-zA-Z0-9]+$ + +# Regular expression which should only match correct function names +function-rgx=[a-z_][a-z0-9_]{2,30}$ + +# Regular expression which should only match correct method names +method-rgx=[a-z_][a-z0-9_]{2,30}$ + +# Regular expression which should only match correct instance attribute names +attr-rgx=[a-z_][a-z0-9_]{2,30}$ + +# Regular expression which should only match correct argument names +argument-rgx=[a-z_][a-z0-9_]{2,30}$ + +# Regular expression which should only match correct variable names +variable-rgx=[a-z_][a-z0-9_]{2,30}$ + +# Regular expression which should only match correct list comprehension / +# generator expression variable names +inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$ + +# Good variable names which should always be accepted, separated by a comma +good-names=i,j,k,ex,Run,_ + +# Bad variable names which should always be refused, separated by a comma +bad-names=foo,bar,baz,toto,tutu,tata + +# Regular expression which should only match functions or classes name which do +# not require a docstring +no-docstring-rgx=__.*__ + + +[MISCELLANEOUS] +# List of note tags to take in consideration, separated by a comma. +notes=FIXME,XXX,TODO + + +[VARIABLES] +# Tells whether we should check for unused import in __init__ files. +init-import=no + +# A regular expression matching the beginning of the name of dummy variables +# (i.e. not used). +dummy-variables-rgx=_|dummy + +# List of additional names supposed to be defined in builtins. Remember that +# you should avoid to define new builtins when possible. +additional-builtins= + + +[IMPORTS] +# Deprecated modules which should not be used, separated by a comma +deprecated-modules=regsub,string,TERMIOS,Bastion,rexec + +# Create a graph of every (i.e. internal and external) dependencies in the +# given file (report RP0402 must not be disabled) +import-graph= + +# Create a graph of external dependencies in the given file (report RP0402 must +# not be disabled) +ext-import-graph= + +# Create a graph of internal dependencies in the given file (report RP0402 must +# not be disabled) +int-import-graph= + + +[DESIGN] +# Maximum number of arguments for function / method +max-args=5 + +# Argument names that match this expression will be ignored. Default to name +# with leading underscore +ignored-argument-names=_.* + +# Maximum number of locals for function / method body +max-locals=15 + +# Maximum number of return / yield for function / method body +max-returns=6 + +# Maximum number of branch for function / method body +max-branchs=12 + +# Maximum number of statements in function / method body +max-statements=50 + +# Maximum number of parents for a class (see R0901). +max-parents=7 + +# Maximum number of attributes for a class (see R0902). +max-attributes=7 + +# Minimum number of public methods for a class (see R0903). +min-public-methods=2 + +# Maximum number of public methods for a class (see R0904). +max-public-methods=20 + + +[CLASSES] +# List of method names used to declare (i.e. assign) instance attributes. +defining-attr-methods=__init__,__new__,setUp + +# List of valid names for the first argument in a class method. +valid-classmethod-first-arg=cls + + +[EXCEPTIONS] +# Exceptions that will emit a warning when being caught. Defaults to +# "Exception" +overgeneral-exceptions=Exception diff --git a/python-k8sapp-istio/k8sapp_istio/requirements.txt b/python-k8sapp-istio/k8sapp_istio/requirements.txt new file mode 100644 index 0000000..5bc15a1 --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/requirements.txt @@ -0,0 +1,2 @@ +pbr>=0.5 +PyYAML==3.10 diff --git a/python-k8sapp-istio/k8sapp_istio/setup.cfg b/python-k8sapp-istio/k8sapp_istio/setup.cfg new file mode 100644 index 0000000..98c96af --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/setup.cfg @@ -0,0 +1,40 @@ +[metadata] +name = k8sapp-istio +summary = StarlingX sysinv extensions for istio +long_description = file: README.rst +long_description_content_type = text/x-rst +license = Apache 2.0 +author = StarlingX +author-email = starlingx-discuss@lists.starlingx.io +home-page = https://www.starlingx.io/ +classifier = + Environment :: OpenStack + Intended Audience :: Information Technology + Intended Audience :: System Administrators + License :: OSI Approved :: Apache Software License + Operating System :: POSIX :: Linux + Programming Language :: Python + Programming Language :: Python :: 2 + Programming Language :: Python :: 2.7 + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.4 + Programming Language :: Python :: 3.5 + +[files] +packages = + k8sapp_istio + +[global] +setup-hooks = + pbr.hooks.setup_hook + +[entry_points] +systemconfig.helm_applications = + istio = systemconfig.helm_plugins.istio + +systemconfig.helm_plugins.istio = + 001_istio = k8sapp_istio.helm.istio:IstioHelm + 002_kiali = k8sapp_istio.helm.kiali:KialiHelm + +[wheel] +universal = 1 diff --git a/python-k8sapp-istio/k8sapp_istio/setup.py b/python-k8sapp-istio/k8sapp_istio/setup.py new file mode 100644 index 0000000..fd364f4 --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/setup.py @@ -0,0 +1,12 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +import setuptools + + +setuptools.setup( + setup_requires=['pbr>=2.0.0'], + pbr=True) diff --git a/python-k8sapp-istio/k8sapp_istio/test-requirements.txt b/python-k8sapp-istio/k8sapp_istio/test-requirements.txt new file mode 100644 index 0000000..7fc556d --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/test-requirements.txt @@ -0,0 +1,22 @@ +# The order of packages is significant, because pip processes them in the order +# of appearance. Changing the order has an impact on the overall integration +# process, which may cause wedges in the gate later. +hacking>=1.1.0,<=2.0.0 # Apache-2.0 +coverage>=3.6 +discover +fixtures>=3.0.0 # Apache-2.0/BSD +mock>=2.0.0 # BSD +passlib>=1.7.0 +psycopg2-binary +python-subunit>=0.0.18 +requests-mock>=0.6.0 # Apache-2.0 +oslotest>=3.2.0 # Apache-2.0 +stestr>=1.0.0 # Apache-2.0 +testrepository>=0.0.18 +testtools>=2.2.0 # MIT +tempest-lib<0.5.0,>=0.4.0 +ipaddr +pytest +pyudev +migrate +markupsafe diff --git a/python-k8sapp-istio/k8sapp_istio/tox.ini b/python-k8sapp-istio/k8sapp_istio/tox.ini new file mode 100644 index 0000000..9b9191e --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/tox.ini @@ -0,0 +1,142 @@ +[tox] +envlist = flake8,py27,py36,py39,pylint,bandit +minversion = 1.6 +# skipsdist = True +#,pip-missing-reqs + +# tox does not work if the path to the workdir is too long, so move it to /tmp +toxworkdir = /tmp/{env:USER}_k8sistiotox +stxdir = {toxinidir}/../../.. +distshare={toxworkdir}/.tox/distshare + +[testenv] +# usedevelop = True +# enabling usedevelop results in py27 develop-inst: +# Exception: Versioning for this project requires either an sdist tarball, +# or access to an upstream git repository. +sitepackages = False + +# tox is silly... these need to be separated by a newline.... +whitelist_externals = bash + find + +install_command = pip install \ + -v -v -v --use-deprecated legacy-resolver \ + -c{toxinidir}/upper-constraints.txt \ + -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/stable/stein/upper-constraints.txt} \ + {opts} {packages} + +# Note the hash seed is set to 0 until can be tested with a +# random hash seed successfully. +setenv = VIRTUAL_ENV={envdir} + PYTHONHASHSEED=0 + PYTHONDONTWRITEBYTECODE=1 + OS_TEST_PATH=./k8sapp_istio/tests + LANG=en_US.UTF-8 + LANGUAGE=en_US:en + LC_ALL=C + EVENTS_YAML=./k8sapp_istio/tests/events_for_testing.yaml + SYSINV_TEST_ENV=True + TOX_WORK_DIR={toxworkdir} + PYLINTHOME={toxworkdir} + +deps = -r{toxinidir}/requirements.txt + -r{toxinidir}/test-requirements.txt + -e{[tox]stxdir}/config/sysinv/sysinv/sysinv + -e{[tox]stxdir}/config/tsconfig/tsconfig + -e{[tox]stxdir}/fault/fm-api/source + -e{[tox]stxdir}/fault/python-fmclient/fmclient + -e{[tox]stxdir}/utilities/ceph/python-cephclient/python-cephclient + -e{[tox]stxdir}/update/cgcs-patch/cgcs-patch + + +commands = + find . -type f -name "*.pyc" -delete + +[flake8] +exclude = build,dist,tools,.eggs +max-line-length=120 + +[testenv:flake8] +basepython = python3 +deps = -r{toxinidir}/test-requirements.txt + flake8-bugbear +commands = + flake8 {posargs} . + +[testenv:py27] +basepython = python2.7 +commands = + {[testenv]commands} + stestr run {posargs} + stestr slowest + +[testenv:py39] +basepython = python3.9 +install_command = pip install \ + -v -v -v --use-deprecated legacy-resolver \ + -c{toxinidir}/upper-constraints.txt \ + -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/starlingx/root/raw/branch/master/build-tools/requirements/debian/upper-constraints.txt} \ + {opts} {packages} +commands = + {[testenv]commands} + stestr run {posargs} + stestr slowest + +[testenv:py36] +basepython = python3.6 +commands = + {[testenv]commands} + stestr run {posargs} + stestr slowest + +[testenv:pep8] +# testenv:flake8 clone +basepython = {[testenv:flake8]basepython} +deps = {[testenv:flake8]deps} +commands = {[testenv:flake8]commands} + +[testenv:venv] +commands = {posargs} + +[bandit] + +[testenv:bandit] +basepython = python3 +deps = -r{toxinidir}/test-requirements.txt + bandit + +commands = bandit --ini tox.ini -n 5 -r k8sapp_istio + +[testenv:pylint] +basepython = python3 +sitepackages = False + +deps = {[testenv]deps} + pylint +commands = + pylint {posargs} k8sapp_istio --rcfile=./pylint.rc + +[testenv:cover] +basepython = python2.7 +deps = {[testenv]deps} +setenv = {[testenv]setenv} + PYTHON=coverage run --parallel-mode + +commands = + {[testenv]commands} + coverage erase + stestr run {posargs} + coverage combine + coverage html -d cover + coverage xml -o cover/coverage.xml + coverage report + +[testenv:pip-missing-reqs] +# do not install test-requirements as that will pollute the virtualenv for +# determining missing packages +# this also means that pip-missing-reqs must be installed separately, outside +# of the requirements.txt files +deps = pip_missing_reqs + -rrequirements.txt +commands=pip-missing-reqs -d --ignore-file=/k8sapp_istio/tests k8sapp_istio diff --git a/python-k8sapp-istio/k8sapp_istio/upper-constraints.txt b/python-k8sapp-istio/k8sapp_istio/upper-constraints.txt new file mode 100644 index 0000000..9c30188 --- /dev/null +++ b/python-k8sapp-istio/k8sapp_istio/upper-constraints.txt @@ -0,0 +1 @@ +# Override upstream constraints based on StarlingX load diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..c01ade2 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +# Nothing diff --git a/stx-istio-helm/centos/build_srpm.data b/stx-istio-helm/centos/build_srpm.data new file mode 100644 index 0000000..6b9bf8b --- /dev/null +++ b/stx-istio-helm/centos/build_srpm.data @@ -0,0 +1,20 @@ +SRC_DIR="stx-istio-helm" + +# Keep the SRCREV in sync with python-k8sapp-istio so the app version is +# the same as the plugin version +TIS_BASE_SRCREV=28fb552abeb93fce220528fa4e29027f8ff394f6 +TIS_PATCH_VER=GITREVCOUNT + +TAR_NAME=helm-charts-istio + +# FluxCD version +ISTIO_VERSION=1.13.2 +FLUXCD_TAR="$TAR_NAME-$ISTIO_VERSION.tar.gz" + +COPY_LIST="${CGCS_BASE}/downloads/$FLUXCD_TAR $PKG_BASE/$SRC_DIR/files/* $PKG_BASE/$SRC_DIR/fluxcd-manifests/*" + +OPT_DEP_LIST="\ + $STX_BASE/app-istio/python-k8sapp-istio \ + $STX_BASE/app-istio/istio-helm \ + $STX_BASE/app-istio/kiali-helm \ +" diff --git a/stx-istio-helm/centos/stx-istio-helm.spec b/stx-istio-helm/centos/stx-istio-helm.spec new file mode 100644 index 0000000..af17a3d --- /dev/null +++ b/stx-istio-helm/centos/stx-istio-helm.spec @@ -0,0 +1,83 @@ +# Application tunables (maps to metadata) +%global app_name istio +%global helm_repo stx-platform + +# Install location +%global app_folder /usr/local/share/applications/helm + +# Build variables +%global helm_folder /usr/lib/helm + +%global fluxcd_cm_version 1.13.2 + +Summary: StarlingX Istio Helm Charts +Name: stx-istio-helm +Version: 1.0 +Release: %{tis_patch_ver}%{?_tis_dist} +License: Apache-2.0 +Group: base +Packager: Wind River +URL: unknown + +Source0: helm-charts-istio-%{version}.tar.gz + +BuildArch: noarch + +BuildRequires: helm +BuildRequires: chartmuseum +BuildRequires: istio-helm +BuildRequires: kiali-helm +BuildRequires: python-k8sapp-istio +BuildRequires: python-k8sapp-istio-wheels +Requires: kiali-helm + +%description +StarlingX Istio Helm Charts + +%package fluxcd +Summary: StarlingX Istio Application FluxCD Helm Charts +Group: base +License: Apache-2.0 + +%description fluxcd +StarlingX Istio Application FluxCD Helm Charts + +%prep +%setup -n helm-charts-istio-%{version} + +%build +# Create a chart tarball compliant with sysinv kube-app.py +%define app_staging %{_builddir}/staging +%define app_tarball_fluxcd %{app_name}-fluxcd-%{version}-%{tis_patch_ver}.tgz + +# Setup staging +cd %{_builddir}/helm-charts-istio-%{version} +mkdir -p %{app_staging} +cp files/metadata.yaml %{app_staging} +cp -R fluxcd-manifests %{app_staging}/ +mkdir -p %{app_staging}/charts +cp %{helm_folder}/*.tgz %{app_staging}/charts +cd %{app_staging} + +# Populate metadata +sed -i 's/@APP_NAME@/%{app_name}/g' %{app_staging}/metadata.yaml +sed -i 's/@APP_VERSION@/%{version}-%{tis_patch_ver}/g' %{app_staging}/metadata.yaml +sed -i 's/@HELM_REPO@/%{helm_repo}/g' %{app_staging}/metadata.yaml + +# Copy the plugins: installed in the buildroot +mkdir -p %{app_staging}/plugins +cp /plugins/%{app_name}/*.whl %{app_staging}/plugins + +find . -type f ! -name '*.md5' -print0 | xargs -0 md5sum > checksum.md5 +tar -zcf %{_builddir}/%{app_tarball_fluxcd} -C %{app_staging}/ . + +# Cleanup staging +rm -fr %{app_staging} + +%install +install -d -m 755 %{buildroot}/%{app_folder} +install -p -D -m 755 %{_builddir}/%{app_tarball_fluxcd} %{buildroot}/%{app_folder} + +%files fluxcd +%defattr(-,root,root,-) +%{app_folder}/%{app_tarball_fluxcd} diff --git a/stx-istio-helm/debian/deb_folder/changelog b/stx-istio-helm/debian/deb_folder/changelog new file mode 100644 index 0000000..6a18e51 --- /dev/null +++ b/stx-istio-helm/debian/deb_folder/changelog @@ -0,0 +1,5 @@ +stx-istio-helm (1.0-1) unstable; urgency=medium + + * Initial release. + + -- Teresa Ho Thu, 31 Mar 2022 08:40:22 +0000 diff --git a/stx-istio-helm/debian/deb_folder/control b/stx-istio-helm/debian/deb_folder/control new file mode 100644 index 0000000..c85465a --- /dev/null +++ b/stx-istio-helm/debian/deb_folder/control @@ -0,0 +1,20 @@ +Source: stx-istio-helm +Section: libs +Priority: optional +Maintainer: StarlingX Developers +Build-Depends: debhelper-compat (= 13), + istio-helm, + chartmuseum, + helm, + procps, + python3-k8sapp-istio, + python3-k8sapp-istio-wheels +Standards-Version: 4.5.1 +Homepage: https://www.starlingx.io + +Package: stx-istio-helm +Section: libs +Architecture: any +Depends: ${misc:Depends} +Description: StarlingX Istio Helm Charts + This package contains helm charts for the Istio application. diff --git a/stx-istio-helm/debian/deb_folder/copyright b/stx-istio-helm/debian/deb_folder/copyright new file mode 100644 index 0000000..313fc6f --- /dev/null +++ b/stx-istio-helm/debian/deb_folder/copyright @@ -0,0 +1,41 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: stx-istio-helm +Source: https://opendev.org/starlingx/app-istio/ + +Files: * +Copyright: (c) 2013-2022 Wind River Systems, Inc +License: Apache-2 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + https://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian-based systems the full text of the Apache version 2.0 license + can be found in `/usr/share/common-licenses/Apache-2.0'. + +# If you want to use GPL v2 or later for the /debian/* files use +# the following clauses, or change it to suit. Delete these two lines +Files: debian/* +Copyright: 2022 Wind River Systems, Inc +License: Apache-2 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + https://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian-based systems the full text of the Apache version 2.0 license + can be found in `/usr/share/common-licenses/Apache-2.0'. diff --git a/stx-istio-helm/debian/deb_folder/rules b/stx-istio-helm/debian/deb_folder/rules new file mode 100755 index 0000000..1d17ab7 --- /dev/null +++ b/stx-istio-helm/debian/deb_folder/rules @@ -0,0 +1,55 @@ +#!/usr/bin/make -f +# export DH_VERBOSE = 1 + +export ROOT = debian/tmp +export APP_FOLDER = $(ROOT)/usr/local/share/applications/helm + +export DEB_VERSION = $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') +export MAJOR = $(shell echo $(DEB_VERSION) | cut -f 1 -d '.') +export MINOR_PATCH = $(shell echo $(DEB_VERSION) | cut -f 2 -d '.') + +export APP_NAME = istio +export APP_VERSION = $(MAJOR).$(MINOR_PATCH) +export APP_TARBALL = $(APP_NAME)-$(APP_VERSION).tgz +export HELM_REPO = stx-platform +export STAGING = staging + +%: + dh $@ + +override_dh_auto_build: + # Host a server for the helm charts. + chartmuseum --debug --port=8879 --context-path='/charts' --storage="local" --storage-local-rootdir="." & + sleep 2 + helm repo add local http://localhost:8879/charts + # Create the TGZ file. + cd helm-charts && make psp-rolebinding + # Terminate the helm chart server. + pkill chartmuseum + # Setup the staging directory. + mkdir -p $(STAGING) + cp files/metadata.yaml $(STAGING) + cp -R fluxcd-manifests $(STAGING) + mkdir -p $(STAGING)/charts + cp /usr/lib/helm/*.tgz $(STAGING)/charts + # Populate metadata. + sed -i 's/@APP_NAME@/$(APP_NAME)/g' $(STAGING)/metadata.yaml + sed -i 's/@APP_VERSION@/$(APP_VERSION)/g' $(STAGING)/metadata.yaml + sed -i 's/@HELM_REPO@/$(HELM_REPO)/g' $(STAGING)/metadata.yaml + # Copy the plugins: installed in the buildroot + # mkdir -p $(STAGING)/plugins + # cp /plugins/$(APP_NAME)/*.whl $(STAGING)/plugins + # Create the app package. + cd $(STAGING) && find . -type f ! -name '*.md5' -print0 | xargs -0 md5sum > checksum.md5 + tar cfz $(APP_TARBALL) -C $(STAGING)/ . + # Cleanup staging + rm -rf $(STAGING) + +override_dh_auto_install: + # Install the app tar file. + install -d -m 755 $(APP_FOLDER) + install -p -D -m 755 $(APP_TARBALL) $(APP_FOLDER) + +override_dh_auto_test: + +override_dh_usrlocal: diff --git a/stx-istio-helm/debian/deb_folder/source/format b/stx-istio-helm/debian/deb_folder/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/stx-istio-helm/debian/deb_folder/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/stx-istio-helm/debian/deb_folder/stx-istio-helm.install b/stx-istio-helm/debian/deb_folder/stx-istio-helm.install new file mode 100644 index 0000000..1b47c6e --- /dev/null +++ b/stx-istio-helm/debian/deb_folder/stx-istio-helm.install @@ -0,0 +1 @@ +usr/local/share/applications/helm/* diff --git a/stx-istio-helm/debian/meta_data.yaml b/stx-istio-helm/debian/meta_data.yaml new file mode 100644 index 0000000..aed2f31 --- /dev/null +++ b/stx-istio-helm/debian/meta_data.yaml @@ -0,0 +1,12 @@ +--- +debname: stx-istio-helm +debver: 1.0-1 +src_path: null +src_files: + - stx-istio-helm/files + - stx-istio-helm/helm-charts + - stx-istio-helm/manifests + +revision: + dist: $STX_DIST + PKG_GITREVCOUNT: true diff --git a/stx-istio-helm/stx-istio-helm/files/Makefile b/stx-istio-helm/stx-istio-helm/files/Makefile new file mode 100644 index 0000000..90fb4fb --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/files/Makefile @@ -0,0 +1,43 @@ +# +# Copyright 2017 The Openstack-Helm Authors. +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# +# It's necessary to set this because some environments don't link sh -> bash. +SHELL := /bin/bash +TASK := build + +EXCLUDES := helm-toolkit doc tests tools logs tmp +CHARTS := helm-toolkit $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) + +.PHONY: $(EXCLUDES) $(CHARTS) + +all: $(CHARTS) + +$(CHARTS): + @if [ -d $@ ]; then \ + echo; \ + echo "===== Processing [$@] chart ====="; \ + make $(TASK)-$@; \ + fi + +init-%: + if [ -f $*/Makefile ]; then make -C $*; fi + if [ -f $*/requirements.yaml ]; then helm dep up $*; fi + +lint-%: init-% + if [ -d $* ]; then helm lint $*; fi + +build-%: lint-% + if [ -d $* ]; then helm package $*; fi + +clean: + @echo "Clean all build artifacts" + rm -f */templates/_partials.tpl */templates/_globals.tpl + rm -f *tgz */charts/*tgz */requirements.lock + rm -rf */charts */tmpcharts + +%: + @: diff --git a/stx-istio-helm/stx-istio-helm/files/index.yaml b/stx-istio-helm/stx-istio-helm/files/index.yaml new file mode 100644 index 0000000..36db709 --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/files/index.yaml @@ -0,0 +1,3 @@ +apiVersion: v1 +entries: {} +generated: 2019-01-07T12:33:46.098166523-06:00 diff --git a/stx-istio-helm/stx-istio-helm/files/metadata.yaml b/stx-istio-helm/stx-istio-helm/files/metadata.yaml new file mode 100644 index 0000000..8a9e1c8 --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/files/metadata.yaml @@ -0,0 +1,6 @@ +maintain_user_overrides: true + +app_name: @APP_NAME@ +app_version: @APP_VERSION@ +helm_repo: @HELM_REPO@ + diff --git a/stx-istio-helm/stx-istio-helm/files/repositories.yaml b/stx-istio-helm/stx-istio-helm/files/repositories.yaml new file mode 100644 index 0000000..e613b63 --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/files/repositories.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +generated: 2019-01-02T15:19:36.215111369-06:00 +repositories: +- caFile: "" + cache: /builddir/.helm/repository/cache/local-index.yaml + certFile: "" + keyFile: "" + name: local + password: "" + url: http://127.0.0.1:8879/charts + username: "" + diff --git a/stx-istio-helm/stx-istio-helm/fluxcd-manifests/base/helmrepository.yaml b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/base/helmrepository.yaml new file mode 100644 index 0000000..4c4adfe --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/base/helmrepository.yaml @@ -0,0 +1,13 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +apiVersion: source.toolkit.fluxcd.io/v1beta1 +kind: HelmRepository +metadata: + name: stx-platform +spec: + url: http://192.168.206.1:8080/helm_charts/stx-platform + interval: 60m diff --git a/stx-istio-helm/stx-istio-helm/fluxcd-manifests/base/kustomization.yaml b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/base/kustomization.yaml new file mode 100644 index 0000000..c0f37cd --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/base/kustomization.yaml @@ -0,0 +1,8 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +resources: + - helmrepository.yaml diff --git a/stx-istio-helm/stx-istio-helm/fluxcd-manifests/base/namespace.yaml b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/base/namespace.yaml new file mode 100644 index 0000000..2227eeb --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/base/namespace.yaml @@ -0,0 +1,10 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +apiVersion: v1 +kind: Namespace +metadata: + name: istio-operator diff --git a/stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/helmrelease.yaml b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/helmrelease.yaml new file mode 100644 index 0000000..68d7fba --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/helmrelease.yaml @@ -0,0 +1,36 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +apiVersion: "helm.toolkit.fluxcd.io/v2beta1" +kind: HelmRelease +metadata: + name: istio-operator + labels: + chart_group: istio-charts +spec: + releaseName: istio-istio-operator + chart: + spec: + chart: istio-operator + version: 1.13.2 + sourceRef: + kind: HelmRepository + name: stx-platform + interval: 5m + timeout: 30m + test: + enable: false + install: + disableHooks: false + upgrade: + disableHooks: false + valuesFrom: + - kind: Secret + name: istio-operator-static-overrides + valuesKey: istio-operator-static-overrides.yaml + - kind: Secret + name: istio-operator-system-overrides + valuesKey: istio-operator-system-overrides.yaml diff --git a/stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/istio-operator-static-overrides.yaml b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/istio-operator-static-overrides.yaml new file mode 100644 index 0000000..db1293c --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/istio-operator-static-overrides.yaml @@ -0,0 +1,45 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +hub: gcr.io/istio-testing +tag: latest + +# ImagePullSecrets for operator ServiceAccount, list of secrets in the same namespace +# used to pull operator image. Must be set for any cluster configured with private docker registry. +imagePullSecrets: [] + +# Used to replace istioNamespace to support operator watch multiple namespaces. +watchedNamespaces: istio-system +waitForResourcesTimeout: 300s + +# Used for helm2 to add the CRDs to templates. +enableCRDTemplates: false + +# revision for the operator resources +revision: "" + +# Operator resource defaults +operator: + resources: + limits: + cpu: 200m + memory: 256Mi + requests: + cpu: 50m + memory: 128Mi + +# Node labels for pod assignment +nodeSelector: {} + +# Tolerations for pod assignment +tolerations: [] + +# Affinity for pod assignment +affinity: {} + +# Additional labels and annotations to apply on the pod level for monitoring and logging configuration. +podLabels: {} +podAnnotations: {} diff --git a/stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/istio-operator-system-overrides.yaml b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/istio-operator-system-overrides.yaml new file mode 100644 index 0000000..7e93270 --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/istio-operator-system-overrides.yaml @@ -0,0 +1,6 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + diff --git a/stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/kustomization.yaml b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/kustomization.yaml new file mode 100644 index 0000000..a0d645b --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/istio-operator/kustomization.yaml @@ -0,0 +1,18 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +namespace: istio-operator +resources: + - helmrelease.yaml +secretGenerator: + - name: istio-operator-static-overrides + files: + - istio-operator-static-overrides.yaml + - name: istio-operator-system-overrides + files: + - istio-operator-system-overrides.yaml +generatorOptions: + disableNameSuffixHash: true diff --git a/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/helmrelease.yaml b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/helmrelease.yaml new file mode 100644 index 0000000..12a6b24 --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/helmrelease.yaml @@ -0,0 +1,36 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +apiVersion: "helm.toolkit.fluxcd.io/v2beta1" +kind: HelmRelease +metadata: + name: kiali-server + labels: + chart_group: istio-charts +spec: + releaseName: istio-kiali-server + chart: + spec: + chart: kiali-server + version: 1.45.0 + sourceRef: + kind: HelmRepository + name: stx-platform + interval: 5m + timeout: 30m + test: + enable: false + install: + disableHooks: false + upgrade: + disableHooks: false + valuesFrom: + - kind: Secret + name: kiali-server-static-overrides + valuesKey: kiali-server-static-overrides.yaml + - kind: Secret + name: kiali-server-system-overrides + valuesKey: kiali-server-system-overrides.yaml diff --git a/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/kiali-server-static-overrides.yaml b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/kiali-server-static-overrides.yaml new file mode 100644 index 0000000..a8cdeb7 --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/kiali-server-static-overrides.yaml @@ -0,0 +1,17 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +replicaCount: 1 +namespace: istio-system +images: + tags: + kiali: docker.io/starlingx/kiali-server:stx.7.0-v0.1.0 +image: + host: registry.local:9001/docker.io/starlingx + image: kiali-server + tags: stx.7.0-v0.1.0 + tag: stx.7.0-v0.1.0 + diff --git a/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/kiali-server-system-overrides.yaml b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/kiali-server-system-overrides.yaml new file mode 100644 index 0000000..7e93270 --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/kiali-server-system-overrides.yaml @@ -0,0 +1,6 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + diff --git a/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/kustomization.yaml b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/kustomization.yaml new file mode 100644 index 0000000..1d945ed --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kiali-server/kustomization.yaml @@ -0,0 +1,18 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +namespace: istio-system +resources: + - helmrelease.yaml +secretGenerator: + - name: kiali-server-static-overrides + files: + - kiali-server-static-overrides.yaml + - name: kiali-server-system-overrides + files: + - kiali-server-system-overrides.yaml +generatorOptions: + disableNameSuffixHash: true diff --git a/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kustomization.yaml b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kustomization.yaml new file mode 100644 index 0000000..dd1b13c --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/fluxcd-manifests/kustomization.yaml @@ -0,0 +1,13 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +namespace: istio-operator +resources: + - base + - istio-operator + - kiali-server diff --git a/stx-istio-helm/stx-istio-helm/helm-charts/Makefile b/stx-istio-helm/stx-istio-helm/helm-charts/Makefile new file mode 100644 index 0000000..90fb4fb --- /dev/null +++ b/stx-istio-helm/stx-istio-helm/helm-charts/Makefile @@ -0,0 +1,43 @@ +# +# Copyright 2017 The Openstack-Helm Authors. +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# +# It's necessary to set this because some environments don't link sh -> bash. +SHELL := /bin/bash +TASK := build + +EXCLUDES := helm-toolkit doc tests tools logs tmp +CHARTS := helm-toolkit $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) + +.PHONY: $(EXCLUDES) $(CHARTS) + +all: $(CHARTS) + +$(CHARTS): + @if [ -d $@ ]; then \ + echo; \ + echo "===== Processing [$@] chart ====="; \ + make $(TASK)-$@; \ + fi + +init-%: + if [ -f $*/Makefile ]; then make -C $*; fi + if [ -f $*/requirements.yaml ]; then helm dep up $*; fi + +lint-%: init-% + if [ -d $* ]; then helm lint $*; fi + +build-%: lint-% + if [ -d $* ]; then helm package $*; fi + +clean: + @echo "Clean all build artifacts" + rm -f */templates/_partials.tpl */templates/_globals.tpl + rm -f *tgz */charts/*tgz */requirements.lock + rm -rf */charts */tmpcharts + +%: + @: diff --git a/test-requirements.txt b/test-requirements.txt new file mode 100644 index 0000000..8ae3e22 --- /dev/null +++ b/test-requirements.txt @@ -0,0 +1,3 @@ +# hacking pulls in flake8 +hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0 +bashate >= 0.2 diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..072d3d3 --- /dev/null +++ b/tox.ini @@ -0,0 +1,52 @@ +[tox] +envlist = linters +minversion = 2.3 +skipsdist = True +sitepackages=False + +[testenv] +install_command = pip install -U {opts} {packages} +setenv = + VIRTUAL_ENV={envdir} + OS_STDOUT_CAPTURE=1 + OS_STDERR_CAPTURE=1 + OS_DEBUG=1 + OS_LOG_CAPTURE=1 +deps = + -r{toxinidir}/requirements.txt + -r{toxinidir}/test-requirements.txt +whitelist_externals = + bash + +passenv = + XDG_CACHE_HOME + + +[testenv:bashate] +# Treat all E* codes as Errors rather than warnings using: -e 'E*' +commands = + bash -c "find {toxinidir} \ + -not \( -type d -name .?\* -prune \) \ + -type f \ + -not -name \*~ \ + -not -name \*.md \ + -name \*.sh \ + -print0 | xargs -r -n 1 -0 bashate -v \ + -e 'E*'" + +[testenv:linters] +commands = + {[testenv:bashate]commands} + +[testenv:flake8] +basepython = python3 +description = Dummy environment to allow flake8 to be run in subdir tox + +[testenv:pylint] +basepython = python3 +description = Dummy environment to allow pylint to be run in subdir tox + +[testenv:bandit] +basepython = python3 +description = Dummy environment to allow bandit to be run in subdir tox +