Skip to main content

KubraGen Builder: Promtail

Project description

KubraGen Builder: Promtail

PyPI version Supported Python versions

kg_promtail is a builder for KubraGen that deploys a Promtail service in Kubernetes.

Promtail is commonly used with Loki.

KubraGen is a Kubernetes YAML generator library that makes it possible to generate configurations using the full power of the Python programming language.

Example

from kubragen import KubraGen
from kubragen.consts import PROVIDER_GOOGLE, PROVIDERSVC_GOOGLE_GKE
from kubragen.object import Object
from kubragen.option import OptionRoot
from kubragen.options import Options
from kubragen.output import OutputProject, OD_FileTemplate, OutputFile_ShellScript, OutputFile_Kubernetes, \
    OutputDriver_Print
from kubragen.provider import Provider

from kg_promtail import PromtailBuilder, PromtailOptions, PromtailConfigFile, PromtailConfigFileOptions, \
    PromtailConfigFileExt_Kubernetes

kg = KubraGen(provider=Provider(PROVIDER_GOOGLE, PROVIDERSVC_GOOGLE_GKE), options=Options({
    'namespaces': {
        'mon': 'app-monitoring',
    },
}))

out = OutputProject(kg)

shell_script = OutputFile_ShellScript('create_gke.sh')
out.append(shell_script)

shell_script.append('set -e')

#
# OUTPUTFILE: app-namespace.yaml
#
file = OutputFile_Kubernetes('app-namespace.yaml')

file.append([
    Object({
        'apiVersion': 'v1',
        'kind': 'Namespace',
        'metadata': {
            'name': 'app-monitoring',
        },
    }, name='ns-monitoring', source='app', instance='app')
])

out.append(file)
shell_script.append(OD_FileTemplate(f'kubectl apply -f ${{FILE_{file.fileid}}}'))

shell_script.append(f'kubectl config set-context --current --namespace=app-monitoring')

#
# SETUP: promtail
#
promtailconfigfile = PromtailConfigFile(options=PromtailConfigFileOptions({
}), extensions=[PromtailConfigFileExt_Kubernetes()])

promtail_config = PromtailBuilder(kubragen=kg, options=PromtailOptions({
    'namespace': OptionRoot('namespaces.mon'),
    'basename': 'mypromtail',
    'config': {
        'promtail_config': promtailconfigfile,
        'loki_url': 'http://loki:3100',
    },
    'kubernetes': {
        'resources': {
            'daemonset': {
                'requests': {
                    'cpu': '150m',
                    'memory': '300Mi'
                },
                'limits': {
                    'cpu': '300m',
                    'memory': '450Mi'
                },
            },
        },
    }
}))

promtail_config.ensure_build_names(promtail_config.BUILD_ACCESSCONTROL, promtail_config.BUILD_CONFIG,
                                   promtail_config.BUILD_SERVICE)

#
# OUTPUTFILE: promtail-config.yaml
#
file = OutputFile_Kubernetes('promtail-config.yaml')
out.append(file)

file.append(promtail_config.build(promtail_config.BUILD_ACCESSCONTROL, promtail_config.BUILD_CONFIG))

shell_script.append(OD_FileTemplate(f'kubectl apply -f ${{FILE_{file.fileid}}}'))

#
# OUTPUTFILE: promtail.yaml
#
file = OutputFile_Kubernetes('promtail.yaml')
out.append(file)

file.append(promtail_config.build(promtail_config.BUILD_SERVICE))

shell_script.append(OD_FileTemplate(f'kubectl apply -f ${{FILE_{file.fileid}}}'))

#
# Write files
#
out.output(OutputDriver_Print())
# out.output(OutputDriver_Directory('/tmp/build-gke'))

Output:

****** BEGIN FILE: 001-app-namespace.yaml ********
apiVersion: v1
kind: Namespace
metadata:
  name: app-monitoring

****** END FILE: 001-app-namespace.yaml ********
****** BEGIN FILE: 002-promtail-config.yaml ********
apiVersion: v1
kind: ServiceAccount
metadata:
  name: mypromtail
  namespace: app-monitoring
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
  name: mypromtail
rules:
- apiGroups: ['']
  resources: [nodes, nodes/proxy, services, endpoints, pods]
  verbs: [get, watch, list]
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
  name: mypromtail
<...more...>
****** END FILE: 002-promtail-config.yaml ********
****** BEGIN FILE: 003-promtail.yaml ********
apiVersion: apps/v1
kind: DaemonSet
metadata:
  name: mypromtail
  namespace: app-monitoring
  labels:
    app: mypromtail
spec:
  selector:
    matchLabels:
      app: mypromtail
  template:
    metadata:
      labels:
        app: mypromtail
    spec:
      serviceAccountName: mypromtail
<...more...>
****** END FILE: 003-promtail.yaml ********
****** BEGIN FILE: create_gke.sh ********
#!/bin/bash

set -e
kubectl apply -f 001-app-namespace.yaml
kubectl config set-context --current --namespace=app-monitoring
kubectl apply -f 002-promtail-config.yaml
kubectl apply -f 003-promtail.yaml

****** END FILE: create_gke.sh ********

Credits

based on

Install Loki with Helm

Author

Rangel Reale (rangelreale@gmail.com)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kg_promtail-0.8.0.tar.gz (10.7 kB view details)

Uploaded Source

Built Distribution

kg_promtail-0.8.0-py3-none-any.whl (11.1 kB view details)

Uploaded Python 3

File details

Details for the file kg_promtail-0.8.0.tar.gz.

File metadata

  • Download URL: kg_promtail-0.8.0.tar.gz
  • Upload date:
  • Size: 10.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.3

File hashes

Hashes for kg_promtail-0.8.0.tar.gz
Algorithm Hash digest
SHA256 aae7254c28bf30c2a5a3a6d2f96d0829af6eb19955d9725ee8ab813c8e4ece18
MD5 1f6ef8bca5a947ce2ed4cbcd94e9bbf8
BLAKE2b-256 4e53c54983666001c35ffd258428ac3459bd618ac4452d7e558c8d0465a2bcba

See more details on using hashes here.

File details

Details for the file kg_promtail-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: kg_promtail-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.3

File hashes

Hashes for kg_promtail-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 faccae7d8db58ba1ede5f8ebab7b4a5c8117fe532d5c81f94cd4a6456d8f5913
MD5 ba6a60a03d63bdd6fccaf7423f7f4515
BLAKE2b-256 3de23b1789ee76e226100104a75fe29e948a3f82aad7b21bb07f0c1682d5a8cd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page