2019-08-08 22:09:53 +02:00
|
|
|
local k = import 'ksonnet/ksonnet.beta.4/k.libsonnet';
|
2019-02-04 20:24:49 +01:00
|
|
|
|
2019-02-27 13:28:00 +01:00
|
|
|
{
|
2019-02-04 20:24:49 +01:00
|
|
|
_config+:: {
|
|
|
|
namespace: 'monitoring',
|
2019-03-22 19:23:23 +01:00
|
|
|
|
|
|
|
versions+:: {
|
|
|
|
smtpServer: 'v1.0.1',
|
|
|
|
},
|
|
|
|
|
|
|
|
imageRepos+:: {
|
|
|
|
smtpServer: 'carlosedp/docker-smtp',
|
|
|
|
},
|
2019-02-04 20:24:49 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
smtpServer+:: {
|
|
|
|
deployment:
|
|
|
|
local deployment = k.apps.v1beta2.deployment;
|
|
|
|
local container = k.apps.v1beta2.deployment.mixin.spec.template.spec.containersType;
|
|
|
|
local containerPort = container.portsType;
|
|
|
|
|
|
|
|
local podLabels = { run: 'smtp-server' };
|
|
|
|
|
|
|
|
local smtpServer =
|
|
|
|
container.new('smtp-server', $._config.imageRepos.smtpServer + ':' + $._config.versions.smtpServer) +
|
2019-08-09 00:39:08 +02:00
|
|
|
container.withPorts(containerPort.newNamed(25, 'smtp')) +
|
2019-02-04 20:24:49 +01:00
|
|
|
container.withEnv([
|
|
|
|
{
|
|
|
|
name: 'GMAIL_USER',
|
|
|
|
valueFrom: {
|
|
|
|
secretKeyRef: { name: 'smtp-account', key: 'username' },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'GMAIL_PASSWORD',
|
|
|
|
valueFrom: {
|
|
|
|
secretKeyRef: { name: 'smtp-account', key: 'password' },
|
|
|
|
},
|
|
|
|
},
|
2019-03-13 22:44:01 +01:00
|
|
|
{
|
|
|
|
name: 'DISABLE_IPV6',
|
|
|
|
value: 'True',
|
|
|
|
},
|
|
|
|
{ name: 'RELAY_DOMAINS', value: ':192.168.0.0/24:10.0.0.0/16' },
|
2019-02-04 20:24:49 +01:00
|
|
|
]);
|
|
|
|
|
2019-03-13 22:44:01 +01:00
|
|
|
local c = [smtpServer];
|
2019-02-04 20:24:49 +01:00
|
|
|
|
2019-03-13 22:44:01 +01:00
|
|
|
deployment.new('smtp-server', 1, c, podLabels) +
|
|
|
|
deployment.mixin.metadata.withNamespace($._config.namespace) +
|
|
|
|
deployment.mixin.metadata.withLabels(podLabels) +
|
|
|
|
deployment.mixin.spec.selector.withMatchLabels(podLabels),
|
2019-02-04 20:24:49 +01:00
|
|
|
|
|
|
|
service:
|
2019-03-13 22:44:01 +01:00
|
|
|
local service = k.core.v1.service;
|
|
|
|
local servicePort = k.core.v1.service.mixin.spec.portsType;
|
|
|
|
local smtpServerPorts = servicePort.newNamed('smtp', 25, 'smtp');
|
2019-02-04 20:24:49 +01:00
|
|
|
|
2019-03-13 22:44:01 +01:00
|
|
|
service.new('smtp-server', $.smtpServer.deployment.spec.selector.matchLabels, smtpServerPorts) +
|
|
|
|
service.mixin.metadata.withNamespace($._config.namespace) +
|
|
|
|
service.mixin.metadata.withLabels({ run: 'smtp-server' }),
|
2019-02-04 20:24:49 +01:00
|
|
|
},
|
2019-03-13 22:44:01 +01:00
|
|
|
}
|