326f833d3e
The app is based on the old StarlingX Rook Ceph application. This provides support for the latest versions of Rook Ceph storage and packs it as a StarlingX Application. Auto-increment helm chart versions is already present on this initial commit. Support for Dual-Stack. Partial IPv6 support was added: there is a bug with DX IPv6 configuration involving the floating monitor. Remove/delete is successful for FluxCD, however some residual kubernetes assets remains on the system after the remove. Rook Ceph version: 1.13.7 Test Plan: PASS: build all app-rook-ceph packages successfully. PASS: app-rook-ceph upload/apply/remove/delete on SX/DX/DX+/Standard platforms. PASS: create a volume using PVC through cephfs and rbd storageClasses and test read/write on the corresponding pools at SX/DX/DX+/Standard plaforms. Story: 2011066 Task: 49846 Change-Id: I7aa6b08a30676095c86a974eaca79084b2f06859 Signed-off-by: Caio Correa <caio.correa@windriver.com>
34 lines
803 B
Makefile
Executable File
34 lines
803 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# export DH_VERBOSE = 1
|
|
|
|
export APP_NAME = rook-ceph
|
|
export PYBUILD_NAME = k8sapp-rook-ceph
|
|
|
|
export DEB_VERSION = $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ')
|
|
export MAJOR = $(shell cat /etc/build.info | grep SW_VERSION | cut -d'"' -f2)
|
|
export MINOR_PATCH = $(shell echo $(DEB_VERSION) | cut -f 4 -d '.')
|
|
export PBR_VERSION = $(MAJOR).$(MINOR_PATCH)
|
|
|
|
export ROOT = $(CURDIR)/debian/tmp
|
|
export SKIP_PIP_INSTALL = 1
|
|
|
|
%:
|
|
dh $@ --with=python3 --buildsystem=pybuild
|
|
|
|
override_dh_auto_install:
|
|
env | sort
|
|
|
|
python3 setup.py install \
|
|
--install-layout=deb \
|
|
--root $(ROOT)
|
|
|
|
python3 setup.py bdist_wheel \
|
|
--universal \
|
|
-d $(ROOT)/plugins
|
|
|
|
override_dh_python3:
|
|
dh_python3 --shebang=/usr/bin/python3
|
|
|
|
override_dh_auto_test:
|
|
PYTHONDIR=$(CURDIR) stestr run
|