Skip to main content

KubraGen Builder: RabbitMQ (Online)

Project description

KubraGen Builder: RabbitMQ (Online)

PyPI version Supported Python versions

kg_rabbitmqonline is a builder for KubraGen that deploys a RabbitMQ server in Kubernetes, downloading and modifying the YAML files at creation time from the Github repository.

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_rabbitmqonline import RabbitMQOnlineBuilder, RabbitMQOnlineOptions, RabbitMQOnlineConfigFile, \
    RabbitMQOnlineConfigFileOptions

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: rabbitmq
#
rabbitol_config = RabbitMQOnlineBuilder(kubragen=kg, options=RabbitMQOnlineOptions({
    'namespace': OptionRoot('namespaces.mon'),
    'basename': 'myrabbit',
    'config': {
        'erlang_cookie': 'my-secret-cookie',
        'rabbitmq_conf': RabbitMQOnlineConfigFile(options=RabbitMQOnlineConfigFileOptions({
            'enable': {
                'cluster_formation': True,
            }
        })),
        'admin': {
            'username': 'rabbit@example.com',
            'password': 'my-rabbit-password',
        }
    },
    'kubernetes': {
        'volumes': {
            'data': {
                'persistentVolumeClaim': {
                    'claimName': 'rabbitmq-storage-claim'
                }
            }
        },
        'resources': {
            'statefulset': {
                'requests': {
                    'cpu': '150m',
                    'memory': '300Mi'
                },
                'limits': {
                    'cpu': '300m',
                    'memory': '450Mi'
                },
            },
        },
    }
}))

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

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

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

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

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

file.append(rabbitol_config.build(rabbitol_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-rabbitmq-config.yaml ********
apiVersion: v1
kind: ServiceAccount
metadata:
  name: myrabbit
  namespace: app-monitoring
---
kind: Role
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
  name: myrabbit
  namespace: app-monitoring
<...more...>
****** END FILE: 002-rabbitmq-config.yaml ********
****** BEGIN FILE: 003-rabbitmq.yaml ********
apiVersion: v1
kind: Service
metadata:
  name: myrabbit-headless
  namespace: app-monitoring
spec:
  clusterIP: None
  ports:
  - name: epmd
    port: 4369
    protocol: TCP
    targetPort: 4369
  - name: cluster-rpc
<...more...>
****** END FILE: 003-rabbitmq.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-rabbitmq-config.yaml
kubectl apply -f 003-rabbitmq.yaml

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

Credits

based on

rabbitmqonline/diy-kubernetes-examples

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_rabbitmqonline-0.8.1.tar.gz (11.3 kB view details)

Uploaded Source

Built Distribution

kg_rabbitmqonline-0.8.1-py3-none-any.whl (12.7 kB view details)

Uploaded Python 3

File details

Details for the file kg_rabbitmqonline-0.8.1.tar.gz.

File metadata

  • Download URL: kg_rabbitmqonline-0.8.1.tar.gz
  • Upload date:
  • Size: 11.3 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_rabbitmqonline-0.8.1.tar.gz
Algorithm Hash digest
SHA256 d1b9e7f15ce5f574eb57377d3f3160fec5ccae4beae3e2dfa3b39ac82e2079d7
MD5 a2a6e9f0b92354c7442d691ab0a3dd4a
BLAKE2b-256 1ddffce2f260ba810b0c866de7d2cae8f54858957fb03022566b2c5c19deb3b1

See more details on using hashes here.

File details

Details for the file kg_rabbitmqonline-0.8.1-py3-none-any.whl.

File metadata

  • Download URL: kg_rabbitmqonline-0.8.1-py3-none-any.whl
  • Upload date:
  • Size: 12.7 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_rabbitmqonline-0.8.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b31ad831f15e4a3e971f75cd84e5ebbd36a5d269457794c07a714c95d0585ff1
MD5 5fb6cb126ea095fac65f4f3e4bc74176
BLAKE2b-256 cd2eab6730219887729c20c87fbda34bb82d4b35b347f9d707dbc56c37d5b309

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