Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat nginx default tls #39

Merged
merged 3 commits into from
Nov 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 25 additions & 3 deletions infrastructure/nginx-ingress/nginx-ingress.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,39 @@ local k = (import '../../prelude.libsonnet');
// begin_config
nginxingress: {
name: 'nginx-ingress',
loadBalancerIP: error 'you need a static loadbalancer (public ip)',
type: 'external',
loadBalancerIP: error 'you need a static loadbalancer ip (public IP for external, internal IP for internal)',
internalSubnetAzure: null,
replicas: 2,
defaultTlsCertificate: null,
},
// end_config
},

newNginxIngress(config={}):: manifest {


local this = self,
local cfg = $._config.nginxingress + config,

'service-ingress-nginx-controller'+: {
// https://github.com/google/jsonnet/issues/234#issuecomment-275489855
local join(a) =
local notNull(i) = i != null;
local maybeFlatten(acc, i) = if std.type(i) == 'array' then acc + i else acc + [i];
std.foldl(maybeFlatten, std.filter(notNull, a), []),

'service-ingress-nginx-controller'+: if cfg.type == 'external' then {
spec+: {
loadBalancerIP: cfg.loadBalancerIP,
},
} else if cfg.type == 'internal-azure' then {
metadata+: {
annotations+: {
'service.beta.kubernetes.io/azure-load-balancer-internal': 'true',
'service.beta.kubernetes.io/azure-load-balancer-ipv4': cfg.loadBalancerIP,
[if cfg.internalSubnetAzure != null then 'service.beta.kubernetes.io/azure-load-balancer-internal-subnet' else null]: cfg.internalSubnetAzure,
},
},
},

'deployment-ingress-nginx-controller'+: {
Expand All @@ -30,7 +48,11 @@ local k = (import '../../prelude.libsonnet');
spec+: {
containers: [
super.containers[0] {
args: super.args + ['--watch-ingress-without-class'],
args: join([
super.args,
'--watch-ingress-without-class',
if cfg.defaultTlsCertificate != null then ['--default-ssl-certificate=' + cfg.defaultTlsCertificate],
]),
},
] + super.containers[1:],
},
Expand Down
Loading