From 1dea880070b6a9a57ecf8aa784b8477859d8ad4a Mon Sep 17 00:00:00 2001 From: Steven Webster Date: Tue, 20 Sep 2022 14:40:51 +0000 Subject: [PATCH] Introduction of the STS Silicom application The sts-silicom application provides support for PTP/SyncE on compatible Silicom hardware. This commit packages the existing Silicom helm charts into a fluxCD application Story: 2010213 Task: 46299 Signed-off-by: Steven Webster Change-Id: Ie0e383c9f96365c61b96ac7e82ceac5f9991b0ec --- .zuul.yaml | 140 ++++++++ CONTRIBUTING.rst | 16 + HACKING.rst | 17 + bindep.txt | 10 + debian_build_layer.cfg | 1 + debian_pkg_dirs | 2 + .../debian/deb_folder/changelog | 5 + .../debian/deb_folder/control | 26 ++ .../debian/deb_folder/copyright | 41 +++ .../python3-k8sapp-sts-silicom-wheels.install | 1 + .../python3-k8sapp-sts-silicom.install | 2 + .../debian/deb_folder/rules | 26 ++ .../debian/deb_folder/source/format | 1 + .../debian/meta_data.yaml | 7 + .../k8sapp_sts_silicom/.gitignore | 35 ++ .../k8sapp_sts_silicom/.stestr.conf | 4 + .../k8sapp_sts_silicom/LICENSE | 202 +++++++++++ .../k8sapp_sts_silicom/README.rst | 7 + .../k8sapp_sts_silicom/__init__.py | 0 .../k8sapp_sts_silicom/common/__init__.py | 0 .../k8sapp_sts_silicom/common/constants.py | 14 + .../k8sapp_sts_silicom/helm/__init__.py | 0 .../k8sapp_sts_silicom/helm/sts_silicom.py | 44 +++ .../k8sapp_sts_silicom/lifecycle/__init__.py | 0 .../lifecycle/lifecycle_sts_silicom.py | 94 +++++ .../k8sapp_sts_silicom/tests/__init__.py | 0 .../k8sapp_sts_silicom/tests/test_plugins.py | 43 +++ .../tests/test_sts_silicom.py | 19 ++ .../k8sapp_sts_silicom/pylint.rc | 320 ++++++++++++++++++ .../k8sapp_sts_silicom/requirements.txt | 2 + .../k8sapp_sts_silicom/setup.cfg | 42 +++ .../k8sapp_sts_silicom/setup.py | 12 + .../k8sapp_sts_silicom/test-requirements.txt | 26 ++ .../k8sapp_sts_silicom/tox.ini | 142 ++++++++ .../k8sapp_sts_silicom/upper-constraints.txt | 1 + requirements.txt | 1 + .../debian/deb_folder/changelog | 5 + .../debian/deb_folder/control | 20 ++ .../debian/deb_folder/copyright | 41 +++ stx-sts-silicom-helm/debian/deb_folder/rules | 76 +++++ .../debian/deb_folder/source/format | 1 + .../deb_folder/stx-sts-silicom-helm.install | 1 + stx-sts-silicom-helm/debian/meta_data.yaml | 12 + ...espace-chomping-in-services-manifest.patch | 42 +++ ...-imagePullSecrets-to-service-account.patch | 39 +++ ...03-Add-imagePullSecrets-to-daemonset.patch | 26 ++ .../stx-sts-silicom-helm/files/Makefile | 43 +++ .../stx-sts-silicom-helm/files/index.yaml | 3 + .../stx-sts-silicom-helm/files/metadata.yaml | 6 + .../files/repositories.yaml | 12 + .../fluxcd-manifests/base/helmrepository.yaml | 13 + .../fluxcd-manifests/base/kustomization.yaml | 8 + .../fluxcd-manifests/base/namespace.yaml | 10 + .../fluxcd-manifests/kustomization.yaml | 12 + .../sts-silicom/helmrelease.yaml | 36 ++ .../sts-silicom/kustomization.yaml | 18 + .../sts-silicom-static-overrides.yaml | 22 ++ .../sts-silicom-system-overrides.yaml | 5 + .../stx-sts-silicom-helm/helm-charts/Makefile | 43 +++ test-requirements.txt | 3 + tox.ini | 52 +++ 61 files changed, 1852 insertions(+) create mode 100644 .zuul.yaml create mode 100644 CONTRIBUTING.rst create mode 100644 HACKING.rst create mode 100644 bindep.txt create mode 100644 debian_build_layer.cfg create mode 100644 debian_pkg_dirs create mode 100644 python-k8sapp-sts-silicom/debian/deb_folder/changelog create mode 100644 python-k8sapp-sts-silicom/debian/deb_folder/control create mode 100644 python-k8sapp-sts-silicom/debian/deb_folder/copyright create mode 100644 python-k8sapp-sts-silicom/debian/deb_folder/python3-k8sapp-sts-silicom-wheels.install create mode 100644 python-k8sapp-sts-silicom/debian/deb_folder/python3-k8sapp-sts-silicom.install create mode 100755 python-k8sapp-sts-silicom/debian/deb_folder/rules create mode 100644 python-k8sapp-sts-silicom/debian/deb_folder/source/format create mode 100644 python-k8sapp-sts-silicom/debian/meta_data.yaml create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/.gitignore create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/.stestr.conf create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/LICENSE create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/README.rst create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/__init__.py create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/common/__init__.py create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/common/constants.py create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/helm/__init__.py create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/helm/sts_silicom.py create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/lifecycle/__init__.py create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/lifecycle/lifecycle_sts_silicom.py create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/tests/__init__.py create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/tests/test_plugins.py create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/tests/test_sts_silicom.py create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/pylint.rc create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/requirements.txt create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/setup.cfg create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/setup.py create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/test-requirements.txt create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/tox.ini create mode 100644 python-k8sapp-sts-silicom/k8sapp_sts_silicom/upper-constraints.txt create mode 100644 requirements.txt create mode 100644 stx-sts-silicom-helm/debian/deb_folder/changelog create mode 100644 stx-sts-silicom-helm/debian/deb_folder/control create mode 100644 stx-sts-silicom-helm/debian/deb_folder/copyright create mode 100755 stx-sts-silicom-helm/debian/deb_folder/rules create mode 100644 stx-sts-silicom-helm/debian/deb_folder/source/format create mode 100644 stx-sts-silicom-helm/debian/deb_folder/stx-sts-silicom-helm.install create mode 100644 stx-sts-silicom-helm/debian/meta_data.yaml create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/files/0001-Fix-whitespace-chomping-in-services-manifest.patch create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/files/0002-Add-imagePullSecrets-to-service-account.patch create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/files/0003-Add-imagePullSecrets-to-daemonset.patch create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/files/Makefile create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/files/index.yaml create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/files/metadata.yaml create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/files/repositories.yaml create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/base/helmrepository.yaml create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/base/kustomization.yaml create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/base/namespace.yaml create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/kustomization.yaml create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/helmrelease.yaml create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/kustomization.yaml create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/sts-silicom-static-overrides.yaml create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/sts-silicom-system-overrides.yaml create mode 100644 stx-sts-silicom-helm/stx-sts-silicom-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..2a94569 --- /dev/null +++ b/.zuul.yaml @@ -0,0 +1,140 @@ +--- +- project: + check: + jobs: + - openstack-tox-linters + - k8sapp-sts-silicom-tox-py39 + - k8sapp-sts-silicom-tox-pylint + gate: + jobs: + - openstack-tox-linters + - k8sapp-sts-silicom-tox-py39 + - k8sapp-sts-silicom-tox-pylint + post: + jobs: + - stx-app-sts-silicom-upload-git-mirror + +- job: + name: k8sapp-sts-silicom-tox-py39 + parent: tox-py39 + description: | + Run py39 for sts-silicom app + nodeset: debian-bullseye + required-projects: + - starlingx/config + - starlingx/fault + - starlingx/update + - starlingx/utilities + files: + - python-k8sapp-sts-silicom/* + vars: + tox_envlist: py39 + python_version: 3.9 + tox_extra_args: -c python-k8sapp-sts-silicom/k8sapp_sts_silicom/tox.ini +- job: + name: stx-app-sts-silicom-upload-git-mirror + parent: upload-git-mirror + description: > + Mirrors opendev.org/starlingx/app-sts-silicom to + github.com/starlingx/app-sts-silicom + vars: + git_mirror_repository: starlingx/app-sts-silicom + secrets: + - name: git_mirror_credentials + secret: stx-app-sts-silicom-github-secret + pass-to-parent: true + +- job: + name: k8sapp-sts-silicom-tox-pylint + parent: tox + description: | + Run pylint test for k8sapp_sts_silicom + required-projects: + - starlingx/config + - starlingx/fault + - starlingx/update + - starlingx/utilities + files: + - python-k8sapp-sts-silicom/* + vars: + tox_envlist: pylint + tox_extra_args: -c python-k8sapp-sts-silicom/k8sapp_sts_silicom/tox.ini + +- secret: + name: stx-app-sts-silicom-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 + - 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 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..5fb2a48 --- /dev/null +++ b/HACKING.rst @@ -0,0 +1,17 @@ +StarlingX App-Sts-Silicom Style Commandments +========================================================= + +- Step 1: Read the OpenStack style commandments + https://docs.openstack.org/hacking/latest/ +- Step 2: Read on + +App-Sts-Silicom 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/bindep.txt b/bindep.txt new file mode 100644 index 0000000..3ffe69f --- /dev/null +++ b/bindep.txt @@ -0,0 +1,10 @@ +# This is a cross-platform list tracking distribution packages needed for install and tests; +# see https://docs.openstack.org/infra/bindep/ for additional information. + +libffi-dev [platform:dpkg] +libldap2-dev [platform:dpkg] +libxml2-dev [platform:dpkg] +libxslt1-dev [platform:dpkg] +libsasl2-dev [platform:dpkg] +libffi-devel [platform:rpm] +python3-all-dev [platform:dpkg] 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..8c73e09 --- /dev/null +++ b/debian_pkg_dirs @@ -0,0 +1,2 @@ +python-k8sapp-sts-silicom +stx-sts-silicom-helm diff --git a/python-k8sapp-sts-silicom/debian/deb_folder/changelog b/python-k8sapp-sts-silicom/debian/deb_folder/changelog new file mode 100644 index 0000000..a04a6d2 --- /dev/null +++ b/python-k8sapp-sts-silicom/debian/deb_folder/changelog @@ -0,0 +1,5 @@ +python3-k8sapp-sts-silicom (1.0-1) unstable; urgency=medium + + * Initial release. + + -- Steven Webster Thu, 31 Aug 2022 08:40:22 +000 diff --git a/python-k8sapp-sts-silicom/debian/deb_folder/control b/python-k8sapp-sts-silicom/debian/deb_folder/control new file mode 100644 index 0000000..8056c87 --- /dev/null +++ b/python-k8sapp-sts-silicom/debian/deb_folder/control @@ -0,0 +1,26 @@ +Source: python3-k8sapp-sts-silicom +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-sts-silicom +Section: libs +Architecture: any +Depends: ${misc:Depends}, ${python3:Depends} +Description: StarlingX Sysinv Sts-Silicom Extensions + This package contains sysinv plugins for the sts-silicom K8S app. + +Package: python3-k8sapp-sts-silicom-wheels +Section: libs +Architecture: any +Depends: ${misc:Depends}, ${python3:Depends}, python3-wheel +Description: StarlingX Sysinv Sts-Silicom Extension Wheels + This package contains python wheels for the sts-silicom K8S app plugins. diff --git a/python-k8sapp-sts-silicom/debian/deb_folder/copyright b/python-k8sapp-sts-silicom/debian/deb_folder/copyright new file mode 100644 index 0000000..f28f82c --- /dev/null +++ b/python-k8sapp-sts-silicom/debian/deb_folder/copyright @@ -0,0 +1,41 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: python3-k8sapp-sts-silicom +Source: https://opendev.org/starlingx/app-sts-silicom/ + +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-sts-silicom/debian/deb_folder/python3-k8sapp-sts-silicom-wheels.install b/python-k8sapp-sts-silicom/debian/deb_folder/python3-k8sapp-sts-silicom-wheels.install new file mode 100644 index 0000000..26517f6 --- /dev/null +++ b/python-k8sapp-sts-silicom/debian/deb_folder/python3-k8sapp-sts-silicom-wheels.install @@ -0,0 +1 @@ +plugins/sts-silicom/*.whl diff --git a/python-k8sapp-sts-silicom/debian/deb_folder/python3-k8sapp-sts-silicom.install b/python-k8sapp-sts-silicom/debian/deb_folder/python3-k8sapp-sts-silicom.install new file mode 100644 index 0000000..6deaa14 --- /dev/null +++ b/python-k8sapp-sts-silicom/debian/deb_folder/python3-k8sapp-sts-silicom.install @@ -0,0 +1,2 @@ +usr/lib/python3/dist-packages/k8sapp_sts_silicom-1.0.0.egg-info/* +usr/lib/python3/dist-packages/k8sapp_sts_silicom/* diff --git a/python-k8sapp-sts-silicom/debian/deb_folder/rules b/python-k8sapp-sts-silicom/debian/deb_folder/rules new file mode 100755 index 0000000..9b0279c --- /dev/null +++ b/python-k8sapp-sts-silicom/debian/deb_folder/rules @@ -0,0 +1,26 @@ +#!/usr/bin/make -f +# export DH_VERBOSE = 1 + +export APP_NAME=sts-silicom +export PBR_VERSION=1.0.0 +export PYBUILD_NAME=k8sapp_sts_silicom +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-sts-silicom/debian/deb_folder/source/format b/python-k8sapp-sts-silicom/debian/deb_folder/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/python-k8sapp-sts-silicom/debian/deb_folder/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/python-k8sapp-sts-silicom/debian/meta_data.yaml b/python-k8sapp-sts-silicom/debian/meta_data.yaml new file mode 100644 index 0000000..21fa48b --- /dev/null +++ b/python-k8sapp-sts-silicom/debian/meta_data.yaml @@ -0,0 +1,7 @@ +--- +debname: python3-k8sapp-sts-silicom +debver: 1.0-1 +src_path: k8sapp_sts_silicom +revision: + dist: $STX_DIST + PKG_GITREVCOUNT: true diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/.gitignore b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/.gitignore new file mode 100644 index 0000000..78c457c --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/.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-sts-silicom/k8sapp_sts_silicom/.stestr.conf b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/.stestr.conf new file mode 100644 index 0000000..f3132a5 --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/.stestr.conf @@ -0,0 +1,4 @@ +[DEFAULT] +test_path=./k8sapp_sts_silicom/tests +top_dir=./k8sapp_sts_silicom +#parallel_class=True diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/LICENSE b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/LICENSE new file mode 100644 index 0000000..929bf20 --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/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-sts-silicom/k8sapp_sts_silicom/README.rst b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/README.rst new file mode 100644 index 0000000..593ebde --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/README.rst @@ -0,0 +1,7 @@ +k8sapp-sts-silicom +============ + +This project contains StarlingX Kubernetes application specific python plugins +for Sts-Silicom. These plugins are required to integrate the Sts-Silicom application into +the StarlingX application framework and to support the various StarlingX +deployments. diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/__init__.py b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/common/__init__.py b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/common/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/common/constants.py b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/common/constants.py new file mode 100644 index 0000000..7e46406 --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/common/constants.py @@ -0,0 +1,14 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +# Application Name +HELM_APP_STS_SILICOM = 'sts-silicom' + +# Namespace to deploy the application +HELM_NS_STS_SILICOM = 'sts-silicom' + +# Chart name +HELM_CHART_STS_SILICOM = 'sts-silicom' \ No newline at end of file diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/helm/__init__.py b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/helm/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/helm/sts_silicom.py b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/helm/sts_silicom.py new file mode 100644 index 0000000..6644d6e --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/helm/sts_silicom.py @@ -0,0 +1,44 @@ +# +# 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_sts_silicom.common import constants as app_constants +from oslo_log import log as logging + +LOG = logging.getLogger(__name__) + +class StsSilicomHelm(base.BaseHelm): + """Class to encapsulate helm operations for the sts-silicom chart""" + + SUPPORTED_NAMESPACES = base.BaseHelm.SUPPORTED_NAMESPACES + \ + [app_constants.HELM_NS_STS_SILICOM] + SUPPORTED_APP_NAMESPACES = { + app_constants.HELM_APP_STS_SILICOM: + base.BaseHelm.SUPPORTED_NAMESPACES + + [app_constants.HELM_NS_STS_SILICOM] + } + + CHART = app_constants.HELM_CHART_STS_SILICOM + + SERVICE_NAME = app_constants.HELM_APP_STS_SILICOM + + def get_namespaces(self): + return self.SUPPORTED_NAMESPACES + + def get_overrides(self, namespace=None): + overrides = { + app_constants.HELM_NS_STS_SILICOM: {} + } + + 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-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/lifecycle/__init__.py b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/lifecycle/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/lifecycle/lifecycle_sts_silicom.py b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/lifecycle/lifecycle_sts_silicom.py new file mode 100644 index 0000000..820dbe2 --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/lifecycle/lifecycle_sts_silicom.py @@ -0,0 +1,94 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# +# All Rights Reserved. +# + +""" System inventory App lifecycle operator.""" + +import os + +from k8sapp_sts_silicom.common import constants as app_constants +from oslo_log import log as logging +from sysinv.common import constants +from sysinv.common import exception +from sysinv.common import kubernetes +from sysinv.common import utils as cutils +from sysinv.helm import lifecycle_base as base +from sysinv.helm.lifecycle_constants import LifecycleConstants + +LOG = logging.getLogger(__name__) + + +class StsSilicomAppLifecycleOperator(base.AppLifecycleOperator): + def app_lifecycle_actions(self, context, conductor_obj, app_op, app, hook_info): + """Perform lifecycle actions for an operation + + :param context: request context, can be None + :param conductor_obj: conductor object, can be None + :param app_op: AppOperator object + :param app: AppOperator.Application object + :param hook_info: LifecycleHookInfo object + + """ + if hook_info.lifecycle_type == constants.APP_LIFECYCLE_TYPE_FLUXCD_REQUEST: + if hook_info.operation == constants.APP_APPLY_OP: + if hook_info.relative_timing == constants.APP_LIFECYCLE_TIMING_POST: + return self.post_apply(app_op, app, hook_info) + + if hook_info.lifecycle_type == constants.APP_LIFECYCLE_TYPE_OPERATION: + if hook_info.operation == constants.APP_REMOVE_OP: + if hook_info.relative_timing == constants.APP_LIFECYCLE_TIMING_PRE: + return self.pre_remove(app) + + if hook_info.lifecycle_type == constants.APP_LIFECYCLE_TYPE_OPERATION: + if hook_info.operation == constants.APP_REMOVE_OP: + if hook_info.relative_timing == constants.APP_LIFECYCLE_TIMING_POST: + return self.post_remove(app) + + super(StsSilicomAppLifecycleOperator, self).app_lifecycle_actions( + context, conductor_obj, app_op, app, hook_info + ) + + def post_apply(self, app_op, app, hook_info): + if LifecycleConstants.EXTRA not in hook_info: + raise exception.LifecycleMissingInfo("Missing {}".format(LifecycleConstants.EXTRA)) + if LifecycleConstants.RETURN_CODE not in hook_info[LifecycleConstants.EXTRA]: + raise exception.LifecycleMissingInfo( + "Missing {} {}".format(LifecycleConstants.EXTRA, LifecycleConstants.RETURN_CODE)) + + # Raise a specific exception to be caught by the + # retry decorator and attempt a re-apply + if not hook_info[LifecycleConstants.EXTRA][LifecycleConstants.RETURN_CODE] and \ + not app_op.is_app_aborted(app.name): + LOG.info("%s app failed applying. Retrying." % str(app.name)) + raise exception.ApplicationApplyFailure(name=app.name) + + def pre_remove(self, app): + LOG.debug( + "Executing pre_remove for {} app".format(app_constants.HELM_APP_STS_SILICOM) + ) + yfile = os.path.join(app.sync_fluxcd_manifest, 'sts-silicom/sts-silicom.yaml') + if os.path.exists(yfile): + cmd = ['kubectl', '--kubeconfig', kubernetes.KUBERNETES_ADMIN_CONF, + 'delete', '-f', yfile] + stdout, stderr = cutils.trycmd(*cmd) + LOG.debug("{} app: cmd={} stdout={} stderr={}".format(app.name, cmd, stdout, stderr)) + + # Comment out sts-silicom.yaml in the kustomization.yaml + kust_file = os.path.join(app.sync_fluxcd_manifest, 'sts-silicom/kustomization.yaml') + cmd = ['sed', '-i', '/sts-silicom.yaml/s/^/#/g', kust_file] + stdout, stderr = cutils.trycmd(*cmd) + LOG.debug("{} app: cmd={} stdout={} stderr={}".format(app.name, cmd, stdout, stderr)) + + def post_remove(self, app): + LOG.debug( + "Executing post_remove for {} app".format(app_constants.HELM_APP_STS_SILICOM) + ) + # Uncomment sts-silicom.yaml in the kustomization.yaml + kust_file = os.path.join(app.sync_fluxcd_manifest, 'sts-silicom/kustomization.yaml') + cmd = ['sed', '-i', '/sts-silicom.yaml/s/^#//g', kust_file] + stdout, stderr = cutils.trycmd(*cmd) + LOG.debug("{} app: post_remove cmd={} stdout={} stderr={}".format(app.name, cmd, stdout, stderr)) diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/tests/__init__.py b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/tests/test_plugins.py b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/tests/test_plugins.py new file mode 100644 index 0000000..da151ba --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/tests/test_plugins.py @@ -0,0 +1,43 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +from k8sapp_sts_silicom.common import constants as app_constants +from sysinv.tests.helm.test_helm import HelmOperatorTestSuiteMixin + +from sysinv.tests.db import base as dbbase + + +class K8SAppStsSilicomAppMixin(object): + app_name = app_constants.HELM_APP_STS_SILICOM + path_name = app_name + '.tgz' + + def setUp(self): + super(K8SAppStsSilicomAppMixin, self).setUp() + + +# Test Configuration: +# - Controller +# - IPv6 +# - Ceph Storage +# - sts-silicom app +class K8SAppStsSilicomControllerTestCase(K8SAppStsSilicomAppMixin, + dbbase.BaseIPv6Mixin, + dbbase.BaseCephStorageBackendMixin, + HelmOperatorTestSuiteMixin, + dbbase.ControllerHostTestCase): + pass + + +# Test Configuration: +# - AIO +# - IPv4 +# - Ceph Storage +# - sts-silicom app +class K8SAppStsSilicomAIOTestCase(K8SAppStsSilicomAppMixin, + dbbase.BaseCephStorageBackendMixin, + HelmOperatorTestSuiteMixin, + dbbase.AIOSimplexHostTestCase): + pass diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/tests/test_sts_silicom.py b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/tests/test_sts_silicom.py new file mode 100644 index 0000000..28f68c4 --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/k8sapp_sts_silicom/tests/test_sts_silicom.py @@ -0,0 +1,19 @@ +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +from k8sapp_sts_silicom.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 StsSilicomTestCase(test_plugins.K8SAppStsSilicomAppMixin, + base.HelmTestCaseMixin): + + def setUp(self): + super(StsSilicomTestCase, self).setUp() + self.app = dbutils.create_test_app(name='sts-silicom') + self.dbapi = dbapi.get_instance() diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/pylint.rc b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/pylint.rc new file mode 100644 index 0000000..5892deb --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/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-sts-silicom/k8sapp_sts_silicom/requirements.txt b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/requirements.txt new file mode 100644 index 0000000..5bc15a1 --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/requirements.txt @@ -0,0 +1,2 @@ +pbr>=0.5 +PyYAML==3.10 diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/setup.cfg b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/setup.cfg new file mode 100644 index 0000000..e01187e --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/setup.cfg @@ -0,0 +1,42 @@ +[metadata] +name = k8sapp-sts-silicom +summary = StarlingX sysinv extensions for sts-silicom +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_sts_silicom + +[global] +setup-hooks = + pbr.hooks.setup_hook + +[entry_points] +systemconfig.helm_applications = + sts-silicom = systemconfig.helm_plugins.sts_silicom + +systemconfig.helm_plugins.sts_silicom = + 001_sts-silicom = k8sapp_sts_silicom.helm.sts_silicom:StsSilicomHelm + +systemconfig.app_lifecycle = + sts-silicom = k8sapp_sts_silicom.lifecycle.lifecycle_sts_silicom:StsSilicomAppLifecycleOperator + +[wheel] +universal = 1 diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/setup.py b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/setup.py new file mode 100644 index 0000000..fd364f4 --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/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-sts-silicom/k8sapp_sts_silicom/test-requirements.txt b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/test-requirements.txt new file mode 100644 index 0000000..99d2991 --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/test-requirements.txt @@ -0,0 +1,26 @@ +# 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. +flake8<3.8.0 +pycodestyle<2.6.0 # MIT License +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 +sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 +oslosphinx<2.6.0,>=2.5.0 # Apache-2.0 +stestr>=1.0.0 # Apache-2.0 +testrepository>=0.0.18 +testtools!=1.2.0,>=0.9.36 +tempest-lib<0.5.0,>=0.4.0 +ipaddr +pytest +pyudev +migrate +markupsafe diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/tox.ini b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/tox.ini new file mode 100644 index 0000000..eb5cc6a --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/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}_k8sstssilicomtox +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/yoga/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_sts_silicom/tests + LANG=en_US.UTF-8 + LANGUAGE=en_US:en + LC_ALL=C + EVENTS_YAML=./k8sapp_sts_silicom/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_sts_silicom + +[testenv:pylint] +basepython = python3 +sitepackages = False + +deps = {[testenv]deps} + pylint +commands = + pylint {posargs} k8sapp_sts_silicom --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_sts_silicom/tests k8sapp_sts_silicom diff --git a/python-k8sapp-sts-silicom/k8sapp_sts_silicom/upper-constraints.txt b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/upper-constraints.txt new file mode 100644 index 0000000..9c30188 --- /dev/null +++ b/python-k8sapp-sts-silicom/k8sapp_sts_silicom/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-sts-silicom-helm/debian/deb_folder/changelog b/stx-sts-silicom-helm/debian/deb_folder/changelog new file mode 100644 index 0000000..37d7a3f --- /dev/null +++ b/stx-sts-silicom-helm/debian/deb_folder/changelog @@ -0,0 +1,5 @@ +stx-sts-silicom-helm (1.0-1) unstable; urgency=medium + + * Initial release. + + -- Steven Webster Thu, 31 Mar 2022 08:40:22 +0000 diff --git a/stx-sts-silicom-helm/debian/deb_folder/control b/stx-sts-silicom-helm/debian/deb_folder/control new file mode 100644 index 0000000..0e67dc3 --- /dev/null +++ b/stx-sts-silicom-helm/debian/deb_folder/control @@ -0,0 +1,20 @@ +Source: stx-sts-silicom-helm +Section: libs +Priority: optional +Maintainer: StarlingX Developers +Build-Depends: debhelper-compat (= 13), + chartmuseum, + helm, + procps, + python3-k8sapp-sts-silicom, + python3-k8sapp-sts-silicom-wheels +Standards-Version: 4.5.1 +Homepage: https://www.starlingx.io + +Package: stx-sts-silicom-helm +Section: libs +Architecture: any +Depends: ${misc:Depends}, + curl +Description: StarlingX Sts-Silicom Helm Charts + This package contains helm charts for the Sts Silicom application. diff --git a/stx-sts-silicom-helm/debian/deb_folder/copyright b/stx-sts-silicom-helm/debian/deb_folder/copyright new file mode 100644 index 0000000..627b7cc --- /dev/null +++ b/stx-sts-silicom-helm/debian/deb_folder/copyright @@ -0,0 +1,41 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: stx-sts-silicom-helm +Source: https://opendev.org/starlingx/app-sts-silicom/ + +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-sts-silicom-helm/debian/deb_folder/rules b/stx-sts-silicom-helm/debian/deb_folder/rules new file mode 100755 index 0000000..620ba7b --- /dev/null +++ b/stx-sts-silicom-helm/debian/deb_folder/rules @@ -0,0 +1,76 @@ +#!/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 STS_SILICOM_PKG="helm-charts-sts-silicom-6003ef8.tar.gz" +export APP_NAME = sts-silicom +export APP_VERSION = $(MAJOR).$(MINOR_PATCH) +export APP_TARBALL_FLUXCD = $(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 + + # Extract the sts-silicom chart + rm -rf fluxcd + mkdir -p fluxcd + tar -C fluxcd -xf helm-charts-sts-silicom-6003ef8.tar.gz + + # Apply patches + cd fluxcd/helm-charts/ && patch --no-backup-if-mismatch --fuzz=0 -p1 < ../../files/0001-Fix-whitespace-chomping-in-services-manifest.patch + cd fluxcd/helm-charts/ && patch --no-backup-if-mismatch --fuzz=0 -p1 < ../../files/0002-Add-imagePullSecrets-to-service-account.patch + cd fluxcd/helm-charts/ && patch --no-backup-if-mismatch --fuzz=0 -p1 < ../../files/0003-Add-imagePullSecrets-to-daemonset.patch + + # Build the charts + cd fluxcd/helm-charts/ && export HELM=helm && $(MAKE) chart + + # Terminate the helm chart server. + pkill chartmuseum + + # Setup the staging directory. + mkdir -p $(STAGING)/charts + + # Copy the fluxcd manifests + cp -R fluxcd-manifests/ $(STAGING)/ + + # Copy the built chart to staging + cp fluxcd/helm-charts/output/sts-silicom-*.tgz $(STAGING)/charts/ + + # Populate metadata. + cp files/metadata.yaml $(STAGING) + 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 + + # Generate checksum file and package the tarball + cd $(STAGING) && find . -type f ! -name '*.md5' -print0 | xargs -0 md5sum > checksum.md5 + tar -zcf $(APP_TARBALL_FLUXCD) -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_FLUXCD) $(APP_FOLDER) + +override_dh_auto_test: + +override_dh_usrlocal: diff --git a/stx-sts-silicom-helm/debian/deb_folder/source/format b/stx-sts-silicom-helm/debian/deb_folder/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/stx-sts-silicom-helm/debian/deb_folder/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/stx-sts-silicom-helm/debian/deb_folder/stx-sts-silicom-helm.install b/stx-sts-silicom-helm/debian/deb_folder/stx-sts-silicom-helm.install new file mode 100644 index 0000000..c86aa47 --- /dev/null +++ b/stx-sts-silicom-helm/debian/deb_folder/stx-sts-silicom-helm.install @@ -0,0 +1 @@ +usr/local/share/applications/helm/* \ No newline at end of file diff --git a/stx-sts-silicom-helm/debian/meta_data.yaml b/stx-sts-silicom-helm/debian/meta_data.yaml new file mode 100644 index 0000000..986ed19 --- /dev/null +++ b/stx-sts-silicom-helm/debian/meta_data.yaml @@ -0,0 +1,12 @@ +--- +debname: stx-sts-silicom-helm +debver: 1.0-1 +src_path: stx-sts-silicom-helm +dl_files: + helm-charts-sts-silicom-6003ef8.tar.gz: + topdir: helm-charts + url: https://github.com/silicom-ltd/STS_HelmCharts/archive/6003ef8f21b9b643edb50ce3de1daef4e89e9bf4.tar.gz + md5sum: 472dd45fde1ce0ebb422b0e791f5fe01 +revision: + dist: $STX_DIST + PKG_GITREVCOUNT: true diff --git a/stx-sts-silicom-helm/stx-sts-silicom-helm/files/0001-Fix-whitespace-chomping-in-services-manifest.patch b/stx-sts-silicom-helm/stx-sts-silicom-helm/files/0001-Fix-whitespace-chomping-in-services-manifest.patch new file mode 100644 index 0000000..a7ef13d --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-helm/files/0001-Fix-whitespace-chomping-in-services-manifest.patch @@ -0,0 +1,42 @@ +From a0c61409f96b47f759e795cf0b8dcf66e5eb7a75 Mon Sep 17 00:00:00 2001 +From: Steven Webster +Date: Wed, 14 Sep 2022 10:39:45 -0400 +Subject: [PATCH] Fix whitespace chomping in services manifest + +Currently, the services template chomps whitespace +(including the newline character) at the end of the +EnableGPS conditional. + +When rendered, this results in something like: + + ports: + - protocol: TCP + port: 2497 + targetPort: 2497--- +apiVersion: v1 +kind: Service +metadata: + +Note: this was seen using helm v3.2.1 + +Signed-off-by: Steven Webster +--- + charts/sts-silicom/templates/services.yaml | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/charts/sts-silicom/templates/services.yaml b/charts/sts-silicom/templates/services.yaml +index 926cc56..94229c9 100644 +--- a/charts/sts-silicom/templates/services.yaml ++++ b/charts/sts-silicom/templates/services.yaml +@@ -14,7 +14,7 @@ spec: + - protocol: TCP + port: {{.Values.GpsSvcPort}} + targetPort: {{.Values.GpsSvcPort}} +-{{- end -}} ++{{- end }} + --- + apiVersion: v1 + kind: Service +-- +2.25.1 + diff --git a/stx-sts-silicom-helm/stx-sts-silicom-helm/files/0002-Add-imagePullSecrets-to-service-account.patch b/stx-sts-silicom-helm/stx-sts-silicom-helm/files/0002-Add-imagePullSecrets-to-service-account.patch new file mode 100644 index 0000000..e8a1e85 --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-helm/files/0002-Add-imagePullSecrets-to-service-account.patch @@ -0,0 +1,39 @@ +From c64a1cbd86b23184e515c4d55364528815d42bc0 Mon Sep 17 00:00:00 2001 +From: Steven Webster +Date: Tue, 20 Sep 2022 03:25:13 -0400 +Subject: [PATCH] Add imagePullSecrets to service account + +Allows pulling from private registry + +Signed-off-by: Steven Webster +--- + charts/sts-silicom/templates/rbac.yaml | 8 +++++++- + 1 file changed, 7 insertions(+), 1 deletion(-) + +diff --git a/charts/sts-silicom/templates/rbac.yaml b/charts/sts-silicom/templates/rbac.yaml +index 6ab23de..19fb4fc 100644 +--- a/charts/sts-silicom/templates/rbac.yaml ++++ b/charts/sts-silicom/templates/rbac.yaml +@@ -30,6 +30,12 @@ kind: ServiceAccount + metadata: + name: {{.Values.ServiceAccount}} + namespace: {{.Release.Namespace}} ++{{- if .Values.imagePullSecrets }} ++imagePullSecrets: ++{{- range .Values.imagePullSecrets }} ++- name: {{ . }} ++{{- end }} ++{{- end }} + + --- + +@@ -65,4 +71,4 @@ subjects: + - kind: ServiceAccount + name: {{.Values.ServiceAccount}} + namespace: {{.Release.Namespace}} +-{{end}} +\ No newline at end of file ++{{end}} +-- +2.25.1 + diff --git a/stx-sts-silicom-helm/stx-sts-silicom-helm/files/0003-Add-imagePullSecrets-to-daemonset.patch b/stx-sts-silicom-helm/stx-sts-silicom-helm/files/0003-Add-imagePullSecrets-to-daemonset.patch new file mode 100644 index 0000000..8179178 --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-helm/files/0003-Add-imagePullSecrets-to-daemonset.patch @@ -0,0 +1,26 @@ +From 3b0d7e4595c83c8109cc02270eb18e13e9da2019 Mon Sep 17 00:00:00 2001 +From: Steven Webster +Date: Tue, 20 Sep 2022 09:07:35 -0400 +Subject: [PATCH] Add imagePullSecrets to daemonset + +Signed-off-by: Steven Webster +--- + charts/sts-silicom/templates/daemonsets.yaml | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/charts/sts-silicom/templates/daemonsets.yaml b/charts/sts-silicom/templates/daemonsets.yaml +index 7473b8f..f1b1c49 100644 +--- a/charts/sts-silicom/templates/daemonsets.yaml ++++ b/charts/sts-silicom/templates/daemonsets.yaml +@@ -21,6 +21,8 @@ spec: + {{- end }} + dnsPolicy: ClusterFirstWithHostNet + hostNetwork: true ++ imagePullSecrets: ++ - name: default-registry-key + containers: + - image: {{.Values.Images.Gpsd}} + imagePullPolicy: Always +-- +2.25.1 + diff --git a/stx-sts-silicom-helm/stx-sts-silicom-helm/files/Makefile b/stx-sts-silicom-helm/stx-sts-silicom-helm/files/Makefile new file mode 100644 index 0000000..90fb4fb --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-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-sts-silicom-helm/stx-sts-silicom-helm/files/index.yaml b/stx-sts-silicom-helm/stx-sts-silicom-helm/files/index.yaml new file mode 100644 index 0000000..36db709 --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-helm/files/index.yaml @@ -0,0 +1,3 @@ +apiVersion: v1 +entries: {} +generated: 2019-01-07T12:33:46.098166523-06:00 diff --git a/stx-sts-silicom-helm/stx-sts-silicom-helm/files/metadata.yaml b/stx-sts-silicom-helm/stx-sts-silicom-helm/files/metadata.yaml new file mode 100644 index 0000000..8a9e1c8 --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-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-sts-silicom-helm/stx-sts-silicom-helm/files/repositories.yaml b/stx-sts-silicom-helm/stx-sts-silicom-helm/files/repositories.yaml new file mode 100644 index 0000000..e613b63 --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-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-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/base/helmrepository.yaml b/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/base/helmrepository.yaml new file mode 100644 index 0000000..4c4adfe --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-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-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/base/kustomization.yaml b/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/base/kustomization.yaml new file mode 100644 index 0000000..c0f37cd --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-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-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/base/namespace.yaml b/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/base/namespace.yaml new file mode 100644 index 0000000..f805df7 --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-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: sts-silicom diff --git a/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/kustomization.yaml b/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/kustomization.yaml new file mode 100644 index 0000000..63d7b52 --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/kustomization.yaml @@ -0,0 +1,12 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +namespace: sts-silicom +resources: + - base + - sts-silicom diff --git a/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/helmrelease.yaml b/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/helmrelease.yaml new file mode 100644 index 0000000..b5a2829 --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/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: stx-sts-silicom + labels: + chart_group: stx-sts-silicom-charts +spec: + releaseName: sts-silicom + chart: + spec: + chart: sts-silicom + version: 0.0.7 + sourceRef: + kind: HelmRepository + name: stx-platform + interval: 5m + timeout: 30m + test: + enable: false + install: + disableHooks: false + upgrade: + disableHooks: false + valuesFrom: + - kind: Secret + name: sts-silicom-static-overrides + valuesKey: sts-silicom-static-overrides.yaml + - kind: Secret + name: sts-silicom-system-overrides + valuesKey: sts-silicom-system-overrides.yaml \ No newline at end of file diff --git a/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/kustomization.yaml b/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/kustomization.yaml new file mode 100644 index 0000000..4cc68b4 --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/kustomization.yaml @@ -0,0 +1,18 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +namespace: sts-silicom +resources: + - helmrelease.yaml +secretGenerator: + - name: sts-silicom-static-overrides + files: + - sts-silicom-static-overrides.yaml + - name: sts-silicom-system-overrides + files: + - sts-silicom-system-overrides.yaml +generatorOptions: + disableNameSuffixHash: true diff --git a/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/sts-silicom-static-overrides.yaml b/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/sts-silicom-static-overrides.yaml new file mode 100644 index 0000000..258e6a3 --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/sts-silicom-static-overrides.yaml @@ -0,0 +1,22 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# + +# 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: + - default-registry-key + +InstallRbac: true + +Images: + Tsyncd: quay.io/silicom/tsyncd:2.1.2.8 + TsyncExtts: quay.io/silicom/tsync_extts:1.0.0 + Phc2Sys: quay.io/silicom/phc2sys:3.1.1 + GrpcTsyncd: quay.io/silicom/grpc-tsyncd:2.1.2.8 + Gpsd: quay.io/silicom/gpsd:3.23.1 + +NodeSelectors: + kubernetes.io/arch: amd64 \ No newline at end of file diff --git a/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/sts-silicom-system-overrides.yaml b/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/sts-silicom-system-overrides.yaml new file mode 100644 index 0000000..ead5143 --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-helm/fluxcd-manifests/sts-silicom/sts-silicom-system-overrides.yaml @@ -0,0 +1,5 @@ +# +# Copyright (c) 2022 Wind River Systems, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +# \ No newline at end of file diff --git a/stx-sts-silicom-helm/stx-sts-silicom-helm/helm-charts/Makefile b/stx-sts-silicom-helm/stx-sts-silicom-helm/helm-charts/Makefile new file mode 100644 index 0000000..90fb4fb --- /dev/null +++ b/stx-sts-silicom-helm/stx-sts-silicom-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 +