summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorJoel Hans <joel@netdata.cloud>2019-12-02 13:23:00 -0700
committerGitHub <noreply@github.com>2019-12-02 13:23:00 -0700
commit998470b66b3309b77db9b64d20a83e7aec8185be (patch)
treec94c38f919fe6e26c655cfd758217e43068f72f5 /packaging
parent4f13b97771afd8166796b36fd2426acd1b5a39af (diff)
Fixing linter errors in packaging/docker/README (#7199)
* Linters and typos on packaging/docker/README * Typo fix
Diffstat (limited to 'packaging')
-rw-r--r--packaging/docker/README.md133
1 files changed, 88 insertions, 45 deletions
diff --git a/packaging/docker/README.md b/packaging/docker/README.md
index 47b277c65c..36d9cf2414 100644
--- a/packaging/docker/README.md
+++ b/packaging/docker/README.md
@@ -1,25 +1,32 @@
# Install Netdata with Docker
-Running Netdata in a container works best for an internal network or to quickly analyze a host. Docker helps you get set up quickly, and doesn't install anything permanent on the system, which makes uninstalling Netdata easy.
+Running Netdata in a container works best for an internal network or to quickly analyze a host. Docker helps you get set
+up quickly, and doesn't install anything permanent on the system, which makes uninstalling Netdata easy.
See our full list of Docker images at [Docker Hub](https://hub.docker.com/r/netdata/netdata).
## Limitations running Netdata in Docker
-For monitoring the whole host, running Netdata in a container can limit its capabilities.
-Some data, like the host OS performance or status, is not accessible or not as detailed in a container as when running Netdata directly on the host.
+For monitoring the whole host, running Netdata in a container can limit its capabilities. Some data, like the host OS
+performance or status, is not accessible or not as detailed in a container as when running Netdata directly on the host.
-A way around this is to provide special mounts to the Docker container so that Netdata can get visibility on host OS information like `/sys` and `/proc` folders or even `/etc/group` and shadow files.
+A way around this is to provide special mounts to the Docker container so that Netdata can get visibility on host OS
+information like `/sys` and `/proc` folders or even `/etc/group` and shadow files.
-Also, we now ship Docker images using an [ENTRYPOINT](https://docs.docker.com/engine/reference/builder/#entrypoint) directive, not a COMMAND directive. Please adapt your execution scripts accordingly. You can find more information about ENTRYPOINT vs COMMAND in the [Docker documentation](https://docs.docker.com/engine/reference/builder/#understand-how-cmd-and-entrypoint-interact).
+Also, we now ship Docker images using an [ENTRYPOINT](https://docs.docker.com/engine/reference/builder/#entrypoint)
+directive, not a COMMAND directive. Please adapt your execution scripts accordingly. You can find more information about
+ENTRYPOINT vs COMMAND in the [Docker
+documentation](https://docs.docker.com/engine/reference/builder/#understand-how-cmd-and-entrypoint-interact).
### Package scrambling in runtime (x86_64 only)
-Our x86_64 Docker images use [Polymorphic Polyverse Linux package scrambling](https://polyverse.io/how-it-works/). For increased security, you can enable rescrambling of Netdata packages during runtime by setting the environment variable `RESCRAMBLE=true` while starting Netdata with a Docker container.
+Our x86_64 Docker images use [Polymorphic Polyverse Linux package scrambling](https://polyverse.io/how-it-works/). For
+increased security, you can enable rescrambling of Netdata packages during runtime by setting the environment variable
+`RESCRAMBLE=true` while starting Netdata with a Docker container.
## Run Netdata with the docker command
-Quickly start Netdata with the `docker` command. Netdata is then available at <http://host:19999>
+Quickly start Netdata with the `docker` command. Netdata is then available at `http://host:19999`.
```bash
docker run -d --name=netdata \
@@ -33,7 +40,7 @@ docker run -d --name=netdata \
netdata/netdata
```
-The above can be converted to `docker-compose` file for ease of management:
+The above can be converted to a `docker-compose.yml` file for ease of management:
```yaml
version: '3'
@@ -54,21 +61,28 @@ services:
- /sys:/host/sys:ro
```
-If you don't want to use the apps.plugin functionality, you can remove the mounts of `/etc/passwd` and `/etc/group` (they are used to get proper user and group names for the monitored host) to get slightly better security.
+If you don't want to use the apps.plugin functionality, you can remove the mounts of `/etc/passwd` and `/etc/group`
+(they are used to get proper user and group names for the monitored host) to get slightly better security.
### Docker container names resolution
-There are a few options for resolving container names within Netdata. Some methods of doing so will allow root access to your machine from within the container. Please read the following carefully.
+There are a few options for resolving container names within Netdata. Some methods of doing so will allow root access to
+your machine from within the container. Please read the following carefully.
#### Docker socket proxy (safest option)
-Deploy a Docker socket proxy that accepts and filters out requests using something like [HAProxy](https://docs.netdata.cloud/docs/running-behind-haproxy/) so that it restricts connections to read-only access to the CONTAINERS endpoint.
+Deploy a Docker socket proxy that accepts and filters out requests using something like
+[HAProxy](https://docs.netdata.cloud/docs/running-behind-haproxy/) so that it restricts connections to read-only access
+to the CONTAINERS endpoint.
-The reason it's safer to expose the socket to the proxy is because Netdata has a TCP port exposed outside the Docker network. Access to the proxy container is limited to only within the network.
+The reason it's safer to expose the socket to the proxy is because Netdata has a TCP port exposed outside the Docker
+network. Access to the proxy container is limited to only within the network.
-Below is [an example repository (and image)](https://github.com/Tecnativa/docker-socket-proxy) that provides a proxy to the socket.
+Below is [an example repository (and image)](https://github.com/Tecnativa/docker-socket-proxy) that provides a proxy to
+the socket.
-You run the Docker Socket Proxy in its own Docker Compose file and leave it on a private network that you can add to other services that require access.
+You run the Docker Socket Proxy in its own Docker Compose file and leave it on a private network that you can add to
+other services that require access.
```yaml
version: '3'
@@ -92,13 +106,14 @@ services:
#### Giving group access to the Docker socket (less safe)
-**Important Note**: You should seriously consider the necessity of activating this option,
-as it grants to the `netdata` user access to the privileged socket connection of docker service and therefore your whole machine.
+**Important Note**: You should seriously consider the necessity of activating this option, as it grants to the `netdata`
+user access to the privileged socket connection of docker service and therefore your whole machine.
-If you want to have your container names resolved by Netdata, make the `netdata` user be part of the group that owns the socket.
+If you want to have your container names resolved by Netdata, make the `netdata` user be part of the group that owns the
+socket.
-To achieve that just add environment variable `PGID=[GROUP NUMBER]` to the Netdata container,
-where `[GROUP NUMBER]` is practically the group id of the group assigned to the docker socket, on your host.
+To achieve that just add environment variable `PGID=[GROUP NUMBER]` to the Netdata container, where `[GROUP NUMBER]` is
+practically the group id of the group assigned to the docker socket, on your host.
This group number can be found by running the following (if socket group ownership is docker):
@@ -108,8 +123,8 @@ grep docker /etc/group | cut -d ':' -f 3
#### Running as root (unsafe)
-**Important Note**: You should seriously consider the necessity of activating this option,
-as it grants to the `netdata` user access to the privileged socket connection of docker service and therefore your whole machine.
+> You should seriously consider the necessity of activating this option, as it grants to the `netdata` user access to
+> the privileged socket connection of docker service, and therefore your whole machine.
```yaml
version: '3'
@@ -126,17 +141,24 @@ services:
### Pass command line options to Netdata
-Since we use an [ENTRYPOINT](https://docs.docker.com/engine/reference/builder/#entrypoint) directive, you can provide [Netdata daemon command line options](https://docs.netdata.cloud/daemon/#command-line-options) such as the IP address Netdata will be running on, using the [command instruction](https://docs.docker.com/engine/reference/builder/#cmd).
+Since we use an [ENTRYPOINT](https://docs.docker.com/engine/reference/builder/#entrypoint) directive, you can provide
+[Netdata daemon command line options](https://docs.netdata.cloud/daemon/#command-line-options) such as the IP address
+Netdata will be running on, using the [command instruction](https://docs.docker.com/engine/reference/builder/#cmd).
-## Install Netdata using Docker Compose with SSL/TLS enabled HTTP Proxy
+## Install Netdata using docker-compose with SSL/TLS enabled HTTP Proxy
-For a permanent installation on a public server, you should [secure the Netdata instance](../../docs/netdata-security.md). This section contains an example of how to install Netdata with an SSL reverse proxy and basic authentication.
+For a permanent installation on a public server, you should [secure the Netdata
+instance](../../docs/netdata-security.md). This section contains an example of how to install Netdata with an SSL
+reverse proxy and basic authentication.
-You can use the following `docker-compose.yml` and Caddyfile files to run Netdata with Docker. Replace the domains and email address for [Let's Encrypt](https://letsencrypt.org/) before starting.
+You can use the following `docker-compose.yml` and Caddyfile files to run Netdata with Docker. Replace the domains and
+email address for [Let's Encrypt](https://letsencrypt.org/) before starting.
### Caddyfile
-This file needs to be placed in `/opt` with name `Caddyfile`. Here you customize your domain and you need to provide your email address to obtain a Let's Encrypt certificate. Certificate renewal will happen automatically and will be executed internally by the caddy server.
+This file needs to be placed in `/opt` with name `Caddyfile`. Here you customize your domain and you need to provide
+your email address to obtain a Let's Encrypt certificate. Certificate renewal will happen automatically and will be
+executed internally by the caddy server.
```caddyfile
netdata.example.org {
@@ -147,7 +169,8 @@ netdata.example.org {
### docker-compose.yml
-After setting Caddyfile run this with `docker-compose up -d` to have fully functioning Netdata setup behind HTTP reverse proxy.
+After setting Caddyfile run this with `docker-compose up -d` to have fully functioning Netdata setup behind HTTP reverse
+proxy.
```yaml
version: '3'
@@ -183,7 +206,8 @@ services:
### Restrict access with basic auth
-You can restrict access by following [official caddy guide](https://caddyserver.com/docs/basicauth) and adding lines to Caddyfile.
+You can restrict access by following [official caddy guide](https://caddyserver.com/docs/basicauth) and adding lines to
+Caddyfile.
## Publish a test image to your own repository
@@ -192,7 +216,8 @@ You may either use the command line tools available or take advantage of our Tra
### Using tools manually from the command line
-The script `packaging/docker/build-test.sh` can be used to create an image and upload it to a repository of your choosing.
+The script `packaging/docker/build-test.sh` can be used to create an image and upload it to a repository of your
+choosing.
```bash
Usage: packaging/docker/build-test.sh -r <REPOSITORY> -v <VERSION> -u <DOCKER_USERNAME> -p <DOCKER_PWD> [-s]
@@ -200,11 +225,13 @@ Usage: packaging/docker/build-test.sh -r <REPOSITORY> -v <VERSION> -u <DOCKER_US
Builds an amd64 image and pushes it to the docker hub repository REPOSITORY
```
-This is especially useful when testing a Pull Request for Kubernetes, since you can set `image` to an immutable repository and tag, set the `imagePullPolicy` to `Always` and just keep uploading new images.
+This is especially useful when testing a Pull Request for Kubernetes, since you can set `image` to an immutable
+repository and tag, set the `imagePullPolicy` to `Always` and just keep uploading new images.
Example:
-We get a local copy of the Helm chart at <https://github.com/netdata/helmchart>. We modify `values.yaml` to have the following:
+We get a local copy of the Helm chart at <https://github.com/netdata/helmchart>. We modify `values.yaml` to have the
+following:
```yaml
image:
@@ -225,27 +252,43 @@ If we make changes to the code, we execute the same `build-test.sh` command, fol
### Inside Netdata organization, using Travis CI
-To enable Travis CI integration on your own repositories (Docker and Github), you need to be part of the Netdata organization.
+To enable Travis CI integration on your own repositories (Docker and Github), you need to be part of the Netdata
+organization.
Once you have contacted the Netdata owners to setup you up on Github and Travis, execute the following steps
- Preparation
- Have Netdata forked on your personal GitHub account
- - Get a GITHUB token: Go to GitHub settings -> Developer Settings -> Personal access tokens, generate a new token with full access to repo_hook, read only access to admin:org, public_repo, repo_deployment, repo:status and user:email settings enabled. This will be your GITHUB_TOKEN that is described later in the instructions, so keep it somewhere safe until is needed.
- - Contact the Netdata team and seek for permissions on <https://scan.coverity.com> should you require Travis to be able to push your forked code to coverity for analysis and report. Once you are setup, you should have your email you used in coverity and a token from them. These will be your COVERITY_SCAN_SUBMIT_EMAIL and COVERITY_SCAN_TOKEN that we will refer to later.
- - Have a valid Docker hub account, the credentials from this account will be your DOCKER_USERNAME and DOCKER_PWD mentioned later
+ - Get a GitHub token: Go to **GitHub settings** -> **Developer Settings** -> **Personal access tokens**, and
+ generate a new token with full access to `repo_hook`, read-only access to `admin:org`, `public_repo`,
+ `repo_deployment`, `repo:status`, and `user:email` settings enabled. This will be your `GITHUB_TOKEN` that is
+ described later in the instructions, so keep it somewhere safe.
+ - Contact the Netdata team and seek for permissions on `https://scan.coverity.com` should you require Travis to be
+ able to push your forked code to coverity for analysis and report. Once you are setup, you should have your
+ email you used in coverity and a token from them. These will be your `COVERITY_SCAN_SUBMIT_EMAIL` and
+ `COVERITY_SCAN_TOKEN` that we will refer to later.
+ - Have a valid Docker hub account, the credentials from this account will be your `DOCKER_USERNAME` and
+ `DOCKER_PWD` mentioned later.
- Setting up Travis CI for your own fork (Detailed instructions provided by Travis team [here](https://docs.travis-ci.com/user/tutorial/))
- Login to travis with your own GITHUB credentials (There is Open Auth access)
- - Go to your profile settings, under [repositories](https://travis-ci.com/account/repositories) section and setup your Netdata fork to be built by travis
- - Once the repository has been setup, go to repository settings within travis (usually under <https://travis-ci.com/NETDATA_DEVELOPER/netdata/settings>, where "NETDATA_DEVELOPER" is your github handle) and select your desired settings.
-
-- While in Travis settings, under Netdata repository settings in the Environment Variables section, you need to add the following:
- - DOCKER_USERNAME and DOCKER_PWD variables so that Travis can login to your docker hub account and publish docker images there.
- - REPOSITORY variable to "NETDATA_DEVELOPER/netdata" where NETDATA_DEVELOPER is your github handle again.
- - GITHUB_TOKEN variable with the token generated on the preparation step, for travis workflows to function properly
- - COVERITY_SCAN_SUBMIT_EMAIL and COVERITY_SCAN_TOKEN variables to enable Travis to submit your code for analysis to Coverity.
-
-Having followed these instructions, your forked repository should be all set up for Travis Integration, happy testing!
+ - Go to your profile settings, under [repositories](https://travis-ci.com/account/repositories) section and setup
+ your Netdata fork to be built by Travis CI.
+ - Once the repository has been setup, go to repository settings within Travis CI (usually under
+ `https://travis-ci.com/NETDATA_DEVELOPER/netdata/settings`, where `NETDATA_DEVELOPER` is your GitHub handle),
+ and select your desired settings.
+
+- While in Travis settings, under Netdata repository settings in the Environment Variables section, you need to add
+ the following:
+ - `DOCKER_USERNAME` and `DOCKER_PWD` variables so that Travis can login to your Docker Hub account and publish
+ Docker images there.
+ - `REPOSITORY` variable to `NETDATA_DEVELOPER/netdata`, where `NETDATA_DEVELOPER` is your GitHub handle again.
+ - `GITHUB_TOKEN` variable with the token generated on the preparation step, for Travis workflows to function
+ properly.
+ - `COVERITY_SCAN_SUBMIT_EMAIL` and `COVERITY_SCAN_TOKEN` variables to enable Travis to submit your code for
+ analysis to Coverity.
+
+Having followed these instructions, your forked repository should be all set up for integration with Travis CI. Happy
+testing!
[![analytics](https://www.google-analytics.com/collect?v=1&aip=1&t=pageview&_s=1&ds=github&dr=https%3A%2F%2Fgithub.com%2Fnetdata%2Fnetdata&dl=https%3A%2F%2Fmy-netdata.io%2Fgithub%2Fpackaging%2Fdocker%2FREADME&_u=MAC~&cid=5792dfd7-8dc4-476b-af31-da2fdb9f93d2&tid=UA-64295674-3)](<>)