Skip to content

Commit

Permalink
Merge "manage sfExtras.py module in sf-operator"
Browse files Browse the repository at this point in the history
  • Loading branch information
Microzuul CI authored and Gerrit Code Review committed Oct 8, 2024
2 parents 4c544df + 8a6f0bb commit 9774dbe
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
5 changes: 5 additions & 0 deletions controllers/libs/logging/logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ type TemplateLoggingParams struct {
ForwardInputConfig TemplateInputParams
}

var (
//go:embed static/sfExtras.py
SFExtrasPythonModule string
)

func CreateForwarderEnvVars(name string, extraLabels []FluentBitLabel) []apiv1.EnvVar {
forwarderEnvVars := []apiv1.EnvVar{
base.MkEnvVarFromFieldRef("K8S_NODENAME", "spec.nodeName"),
Expand Down
32 changes: 32 additions & 0 deletions controllers/libs/logging/static/sfExtras.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Copyright (C) 2023 Red Hat
# SPDX-License-Identifier: Apache-2.0


import os
import logging

import requests


class SimpleFluentBitHTTPInputHandler(logging.Handler):
"""A minimal handler for sending logs to the HTTP Input
of a Fluent Bit collector."""
def __init__(self, url, env_prefix=None):
logging.Handler.__init__(self)
self.url = url
self.env_prefix = env_prefix

def emit(self, record):
d = {
'log': self.format(record)
}
if self.env_prefix is not None:
for envvar in os.environ:
if envvar.startswith(self.env_prefix):
key = envvar[len(self.env_prefix):].lower()
d[key] = os.environ[envvar]
try:
req = requests.post(self.url, json=d)
req.raise_for_status()
except requests.HTTPError as e:
self.handleError(record)
16 changes: 16 additions & 0 deletions controllers/zuul.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,12 @@ func (r *SFController) mkZuulContainer(service string, corporateCMExists bool) a
Name: "zuul-ca",
MountPath: "/etc/pki/ca-trust/extracted",
},
{
Name: "extra-python-module",
MountPath: "/usr/local/lib/python3.11/site-packages/sfExtras.py",
SubPath: "sfExtras.py",
ReadOnly: true,
},
}
envs := []apiv1.EnvVar{
base.MkEnvVar("REQUESTS_CA_BUNDLE", "/etc/ssl/certs/ca-bundle.crt"),
Expand Down Expand Up @@ -295,6 +301,11 @@ func mkZuulVolumes(service string, r *SFController, corporateCMExists bool) []ap
// Install the logging settings config map resource
r.EnsureConfigMap("zuul-logging", r.computeLoggingConfig())

// Install extra python module
r.EnsureConfigMap("extra-python-module", map[string]string{
"sfExtras.py": logging.SFExtrasPythonModule,
})

volumes := []apiv1.Volume{
base.MkVolumeSecret("ca-cert"),
base.MkVolumeSecret("zuul-config"),
Expand All @@ -311,6 +322,7 @@ func mkZuulVolumes(service string, r *SFController, corporateCMExists bool) []ap
},
base.MkVolumeCM("statsd-config", "zuul-statsd-config-map"),
base.MkVolumeCM("extra-config", "zuul-extra-config-map"),
base.MkVolumeCM("extra-python-module", "extra-python-module-config-map"),
base.MkEmptyDirVolume("zuul-ca"),
}
if !isStatefulset(service) {
Expand Down Expand Up @@ -458,6 +470,7 @@ func (r *SFController) EnsureZuulScheduler(cfg *ini.File) bool {
"zuul-extra": utils.Checksum([]byte(sshConfig)),
"zuul-connections": utils.IniSectionsChecksum(cfg, utils.IniGetSectionNamesByPrefix(cfg, "connection")),
"corporate-ca-certs-version": getCMVersion(corporateCM, corporateCMExists),
"extras-python-module": utils.Checksum([]byte(logging.SFExtrasPythonModule)),
}

if r.isConfigRepoSet() {
Expand Down Expand Up @@ -585,6 +598,7 @@ func (r *SFController) EnsureZuulExecutor(cfg *ini.File) bool {
"zuul-logging": utils.Checksum([]byte(r.getZuulLoggingString("zuul-executor"))),
"zuul-connections": utils.IniSectionsChecksum(cfg, utils.IniGetSectionNamesByPrefix(cfg, "connection")),
"corporate-ca-certs-version": getCMVersion(corporateCM, corporateCMExists),
"extras-python-module": utils.Checksum([]byte(logging.SFExtrasPythonModule)),
}
// TODO Add the zk-port-forward-kube-config secret resource version in the annotation if enabled

Expand Down Expand Up @@ -662,6 +676,7 @@ func (r *SFController) EnsureZuulMerger(cfg *ini.File) bool {
"zuul-connections": utils.IniSectionsChecksum(cfg, utils.IniGetSectionNamesByPrefix(cfg, "connection")),
"zuul-logging": utils.Checksum([]byte(r.getZuulLoggingString("zuul-merger"))),
"corporate-ca-certs-version": getCMVersion(corporateCM, corporateCMExists),
"extras-python-module": utils.Checksum([]byte(logging.SFExtrasPythonModule)),
}

zm := r.mkHeadlessSatefulSet(service, "", r.getStorageConfOrDefault(r.cr.Spec.Zuul.Merger.Storage), apiv1.ReadWriteOnce, r.cr.Spec.ExtraLabels)
Expand Down Expand Up @@ -727,6 +742,7 @@ func (r *SFController) EnsureZuulWeb(cfg *ini.File) bool {
"zuul-logging": utils.Checksum([]byte(r.getZuulLoggingString("zuul-web"))),
"zuul-connections": utils.IniSectionsChecksum(cfg, utils.IniGetSectionNamesByPrefix(cfg, "connection")),
"corporate-ca-certs-version": getCMVersion(corporateCM, corporateCMExists),
"extras-python-module": utils.Checksum([]byte(logging.SFExtrasPythonModule)),
}

zw := base.MkDeployment("zuul-web", r.ns, "", r.cr.Spec.ExtraLabels)
Expand Down

0 comments on commit 9774dbe

Please sign in to comment.