Skip to content
This repository was archived by the owner on Dec 21, 2021. It is now read-only.

Add building of RPMs and update default paths for DEB packages and command line parameters #110

Merged
merged 22 commits into from
Apr 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
0f3d054
First try of building and pushing an rpm package.
soenkeliebau Mar 11, 2021
7cd7005
Added debug flags to rpm build process and forgotten config file.
soenkeliebau Mar 11, 2021
77e7b42
Fixes for rpm publishing process.
soenkeliebau Mar 11, 2021
26d1a5a
Removed leftover backslashes from testing this in shell script.
soenkeliebau Mar 11, 2021
764abb4
Removed test trigger to run bild on push to rpm branch.
soenkeliebau Mar 11, 2021
1555057
Merge branch 'main' into rpm
soenkeliebau Mar 26, 2021
38bde86
Ported build code from operators for rpm.
soenkeliebau Mar 26, 2021
7d467f4
Typo
soenkeliebau Mar 26, 2021
d46b4e3
Forgot to commit specfile
soenkeliebau Mar 26, 2021
a316867
Directory naming error
soenkeliebau Mar 26, 2021
d1ef599
Config File was not specified as managed.
soenkeliebau Mar 26, 2021
04b14e8
Typo in conf dir
soenkeliebau Mar 26, 2021
c34972a
Fixed name of binary in apt spec
soenkeliebau Mar 26, 2021
f490258
Fixed service file for debian, config path was not adjusted in here.
soenkeliebau Mar 29, 2021
0fd8252
Fixed a mixture of errors in config paths.
soenkeliebau Mar 29, 2021
69354cf
Duplication in path
soenkeliebau Mar 29, 2021
52a9c8b
Changed default value for tls files path
soenkeliebau Mar 29, 2021
594fbeb
Fixed path
soenkeliebau Mar 29, 2021
81c9c26
Removed running build on rpm branch in preparation for merging
soenkeliebau Mar 30, 2021
5beafaf
Regenerated command line parameter docs.
soenkeliebau Mar 30, 2021
2d1ed67
Merge branch 'main' into rpm
soenkeliebau Apr 1, 2021
902e6c0
Adressed comments from Lars.
soenkeliebau Apr 1, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,24 @@ jobs:
-u 'github:${{ secrets.NEXUS_PASSWORD }}'
-H "Content-Type: multipart/form-data"
--data-binary "@./$(find target/debian/ -name *.deb)"
"https://repo.stackable.tech/repository/deb-nightly/"
"https://repo.stackable.tech/repository/deb-nightly/"

centos:
runs-on: centos${{ matrix.node }}
strategy:
matrix:
node: [ 7, 8 ]
steps:
- uses: actions/checkout@v2
- name: Build
run: ~/.cargo/bin/cargo +nightly build --verbose --release
- name: Build RPM package
run: packaging/buildrpm.sh stackable-agent
- name: Publish RPM package
run: >-
/usr/bin/curl
-vvvv
--fail
-u 'github:${{ secrets.NEXUS_PASSWORD }}'
--upload-file "./$(find target/rpm/RPMS/x86_64/ -name *.rpm)"
"https://repo.stackable.tech/repository/rpm-nightly/el${{ matrix.node }}/"
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ codegen-units = 1
maintainer-scripts = "packaging/debian/"
systemd-units = { enable = false }
assets = [
["packaging/config/agent.conf", "etc/stackable-agent/", "644"],
["target/release/agent", "opt/stackable-agent/stackable-agent", "755"],
]
["packaging/config/agent.conf", "etc/stackable/stackable-agent/", "644"],
["target/release/stackable-agent", "opt/stackable-agent/stackable-agent", "755"],
]
117 changes: 71 additions & 46 deletions documentation/commandline_args.adoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@



=== server-cert-file
=== no-config

*Default value*: `No default value`

Expand All @@ -10,60 +10,78 @@
*Multiple values:* false


The certificate file for the local webserver which the Krustlet starts.
If this option is specified, any file referenced in AGENT_CONF environment variable will be ignored.


=== server-port
=== pod-cidr

*Default value*: `3000`
*Default value*: ``

*Required*: false

*Multiple values:* false


Port to listen on for callbacks.
This setting controls the pod address range that the agent reports to Kubernetes.
The effect of this setting is that Kubernetes will reserve address blocks from withhin this range for every node.
Depending on the setting for maximum pods per node, these will be larger or smaller ranges, and influence the maximum number of nodes for the cluster.

The agent does not require any pod address ranges, and by default doesn't specify anything for this setting.

=== package-directory
WARNING: There should almost never be a reason to use this setting, this is mostly here for very special circumstances. Do not touch it unless you really know what you're doing.

*Default value*: `/opt/stackable/packages`

=== bootstrap-file

*Default value*: `/etc/stackable/stackable-agent/bootstrap-kubelet.conf`

*Required*: false

*Multiple values:* false


This directory will serve as starting point for packages that are needed by pods assigned to this node.\n Packages will be downloaded into the "_download" folder at the top level of this folder as archives and remain there for potential future use.
The bootstrap file to use in case Kubernetes bootstraping is used to add the agent.

Archives will the be extracted directly into this folder in subdirectories following the naming
scheme of "productname-productversion".

The agent will need full access to this directory and tries to create it if it does not exist.
=== server-bind-ip

*Default value*: `No default value`

=== data-directory
*Required*: false

*Multiple values:* false


The local IP to register as the node's ip with the apiserver. Will be automatically set to the first address of the first non-loopback interface if not specified.


=== server-key-file

*Default value*: `/var/stackable/agent/data`
*Default value*: `/etc/stackable/stackable-agent/secret/agent.key`

*Required*: false

*Multiple values:* false


The directory where the stackable agent should keep its working data.
Private key file (in PKCS8 format) to use for the local webserver the Krustlet starts.


=== no-config
=== package-directory

*Default value*: `No default value`
*Default value*: `/opt/stackable/packages`

*Required*: false

*Multiple values:* false


If this option is specified, any file referenced in AGENT_CONF environment variable will be ignored.
This directory will serve as starting point for packages that are needed by pods assigned to this node.\n Packages will be downloaded into the "_download" folder at the top level of this folder as archives and remain there for potential future use.

Archives will the be extracted directly into this folder in subdirectories following the naming
scheme of "productname-productversion".

The agent will need full access to this directory and tries to create it if it does not exist.


=== hostname
Expand All @@ -78,49 +96,45 @@ If this option is specified, any file referenced in AGENT_CONF environment varia
The hostname to register the node under in Kubernetes - defaults to system hostname.


=== pod-cidr
=== data-directory

*Default value*: ``
*Default value*: `/var/lib/stackable/agent`

*Required*: false

*Multiple values:* false


This setting controls the pod address range that the agent reports to Kubernetes.
The effect of this setting is that Kubernetes will reserve address blocks from withhin this range for every node.
Depending on the setting for maximum pods per node, these will be larger or smaller ranges, and influence the maximum number of nodes for the cluster.

The agent does not require any pod address ranges, and by default doesn't specify anything for this setting.
The directory where the stackable agent should keep its working data.


=== server-key-file
=== server-cert-file

*Default value*: `No default value`
*Default value*: `/etc/stackable/stackable-agent/secret/agent.crt`

*Required*: false

*Multiple values:* false


Private key file (in PKCS8 format) to use for the local webserver the Krustlet starts.
The certificate file for the local webserver which the Krustlet starts.


=== server-bind-ip
=== server-port

*Default value*: `No default value`
*Default value*: `3000`

*Required*: false

*Multiple values:* false


The local IP to register as the node's ip with the apiserver. Will be automatically set to the first address of the first non-loopback interface if not specified.
Port to listen on for callbacks.


=== config-directory

*Default value*: `/opt/stackable/config`
*Default value*: `/etc/stackable/serviceconfig`

*Required*: false

Expand All @@ -140,43 +154,54 @@ WARNING: This allows anybody who can specify pods more or less full access to th
The agent will need full access to this directory and tries to create it if it does not exist.


=== tag
=== log-directory

*Default value*: `No default value`
*Default value*: `/var/log/stackable/servicelogs`

*Required*: false

*Multiple values:* true
*Multiple values:* false


A "key=value" pair that should be assigned to this agent as tag. This can be specified multiple times to assign additional tags.
This directory will serve as starting point for all log files which this service creates.
Every service will get its own subdirectory created within this directory.
Anything that is then specified in the log4j config or similar files will be resolved relatively to this directory.

Tags are the main way of identifying nodes to assign services to later on.
The agent will need full access to this directory and tries to create it if it does not exist.


=== log-directory
=== session

*Default value*: `/opt/stackable/logs`
*Default value*: `No default value`

*Required*: false

*Multiple values:* false


This directory will serve as starting point for all log files which this service creates.
Every service will get its own subdirectory created within this directory.
Anything that is then specified in the log4j config or similar files will be resolved relatively to this directory.
This parameter specifies whether to use a session or the system DBus connection when talking to systemd.
For our purposps the difference between the two can be explained as the session bus being restricted to the current user, whereas the system bus rolls out services that are available for every user.
In reality is is a bit more involved than that, please refer to the https://dbus.freedesktop.org/doc/dbus-specification.html[official docs] for more information.

The agent will need full access to this directory and tries to create it if it does not exist.
When this flag is specified it causes symlinks for loaded services to be created in the currently active users systemd directory `~/.config/systemd/user` instead of one of the globally valid locations:

- `/lib/systemd/system`
- `/etc/systemd/system`

=== bootstrap-file
The default is to use the system bus, for which it is necessary that the agent either run as root or have passwordless sudo rights.

Using the session bus will mainly be useful for scenarios without root access and for testing on developer machines.

*Default value*: `/etc/kubernetes/bootstrap-kubelet.conf`

=== tag

*Default value*: `No default value`

*Required*: false

*Multiple values:* false
*Multiple values:* true


The bootstrap file to use in case Kubernetes bootstraping is used to add the agent.
A "key=value" pair that should be assigned to this agent as tag. This can be specified multiple times to assign additional tags.

Tags are the main way of identifying nodes to assign services to later on.
75 changes: 75 additions & 0 deletions packaging/buildrpm.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
#!/usr/bin/env bash
# This script creates an RPM package containing the binary created by this Cargo project.
# The script is not universally applicable, since it makes a few assumptions about the project structure:
# 1. The RPM scaffolding needs to be provided in packaging/rpm
# 2. The binary to be packaged needs to be created in target/release

# The script takes one argument, which is the name of the binary that has been created by the build process.
# This argument will be reused for naming the final RPM file.

# Check if one parameter was specified - we'll use this as the name parameter for all files
# This allows us to reuse the script across all operators
if [ -z $1 ]; then
echo "This script requires the project name to be specified as the first parameter!"
exit 1
fi

export PACKAGE_NAME=$1
BINARY_FILE=target/release/$PACKAGE_NAME

# The package description is parsed from the output of `cargo metadata` by using jq.
# We need to look up the package with a select statement to match the name from an array of packages
# The name is passed into jq as a jq variable, as no substitution would take place within the single
# quotes of the jq expression.
export PACKAGE_DESCRIPTION=$(~/.cargo/bin/cargo metadata --format-version 1| jq --arg NAME "$PACKAGE_NAME" '.packages[] | select(.name == $NAME) | .description')
if [ -z $PACKAGE_DESCRIPTION ]; then
echo "Unable to parse package description from output of `cargo metadata`, cannot build RPM without this field!"
exit 2
fi
echo

# Check that we are being called from the main directory and the release build process has been run
if [ ! -f $BINARY_FILE ]; then
echo "Binary file not found at [$BINARY_FILE] - this script should be called from the root directory of the repository and 'cargo build --release' needs to have run before calling this script!"
exit 3
fi

echo Cleaning up prior build attempts
rm -rf target/rpm

# Parse the version and release strings from the PKGID reported by Cargo
# This is in the form Path#Projectname:version, which we parse by repeated calls to awk with different separators
# This could most definitely be improved, but works for now
export VERSION_STRING=$(~/.cargo/bin/cargo pkgid | awk -F'#' '{print $2}' | awk -F':' '{print $2}')
echo version: ${VERSION_STRING}

export PACKAGE_VERSION=$(echo ${VERSION_STRING} | awk -F '-' '{print $1}')

# Any suffix like '-nightly' is split out into the release here, as - is not an allowed character in rpm versions
# The final release will look like 0.suffix or 0 if no suffix is specified.
export PACKAGE_RELEASE="0$(echo ${VERSION_STRING} | awk -F '-' '{ if ($2 != "") print "."$2;}')"

echo Defined package version: [${PACKAGE_VERSION}]
echo Defined package release: [${PACKAGE_RELEASE}]
echo Defined package description: [${PACKAGE_DESCRIPTION}]

echo Creating directory scaffolding for RPM
cp -r packaging/rpm target/
# Create empty directory for the binary to be placed into
mkdir -p target/rpm/SOURCES/${PACKAGE_NAME}-VERSION/opt/stackable/${PACKAGE_NAME}

# Create config directory and copy config file template over
mkdir -p target/rpm/SOURCES/${PACKAGE_NAME}-VERSION/etc/stackable/${PACKAGE_NAME}
cp packaging/config/agent.conf target/rpm/SOURCES/${PACKAGE_NAME}-VERSION/etc/stackable/${PACKAGE_NAME}

# The packaging source directory does not contain the version yet, as this will need to be replaced for every
# execution. Instead the directory name contains the marker "VERSION" which we now replace with the actual version.
rename VERSION ${PACKAGE_VERSION} target/rpm/SOURCES/${PACKAGE_NAME}-VERSION

cp target/release/${PACKAGE_NAME} target/rpm/SOURCES/${PACKAGE_NAME}-${PACKAGE_VERSION}/opt/stackable/${PACKAGE_NAME}/

pushd target/rpm/SOURCES
tar czvf ${PACKAGE_NAME}-${PACKAGE_VERSION}.tar.gz ${PACKAGE_NAME}-${PACKAGE_VERSION}
popd

rpmbuild --define "_topdir `pwd`/target/rpm" -v -ba target/rpm/SPECS/${PACKAGE_NAME}.spec
5 changes: 0 additions & 5 deletions packaging/config/agent.conf
Original file line number Diff line number Diff line change
@@ -1,5 +0,0 @@
--package-directory=/var/lib/stackable/packages
--config-directory=/var/lib/stackable/config
--data-directory=/var/lib/stackable/agent
--server-key-file=/var/lib/stackable/agent/config/agent.key
--server-cert-file=/var/lib/stackable/agent/config/agent.crt
8 changes: 5 additions & 3 deletions packaging/debian/postinst
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/usr/bin/env bash

mkdir -p /var/lib/stackable/packages
mkdir -p /var/lib/stackable/config
mkdir -p /var/lib/stackable/agent/config
mkdir -p /opt/stackable/packages
mkdir -p /var/lib/stackable/stackable-agent
mkdir -p /var/log/stackable/servicelogs
mkdir -p /etc/stackable/stackable-agent
mkdir -m 700 /etc/stackable/stackable-agent/secret

#DEBHELPER#
2 changes: 1 addition & 1 deletion packaging/debian/service
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ExecStart=/opt/stackable-agent/stackable-agent
Restart=on-abort
StandardOutput=journal
StandardError=journal
Environment="CONFIG_FILE=/etc/stackable-agent/agent.conf"
Environment="CONFIG_FILE=/etc/stackable/stackable-agent/agent.conf"
Environment="RUST_LOG=info"
[Install]
WantedBy=multi-user.target
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[Unit]
Description=Stackable Agent
Before=
After=network.target
[Service]
User=root
ExecStart=/opt/stackable/stackable-agent/stackable-agent
Restart=on-abort
StandardOutput=journal
StandardError=journal
Environment="CONFIG_FILE=/etc/stackable/stackable-agent/agent.conf"
Environment="RUST_LOG=info"
[Install]
WantedBy=multi-user.target
Loading