-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdeployment.yaml
861 lines (859 loc) · 32.9 KB
/
deployment.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
apiVersion: v1
kind: Namespace
metadata:
labels:
app.kubernetes.io/name: pomerium
name: pomerium
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.14.0
labels:
app.kubernetes.io/name: pomerium
name: policyfilters.gateway.pomerium.io
spec:
group: gateway.pomerium.io
names:
kind: PolicyFilter
listKind: PolicyFilterList
plural: policyfilters
singular: policyfilter
scope: Namespaced
versions:
- name: v1alpha1
schema:
openAPIV3Schema:
description: |-
PolicyFilter represents a Pomerium policy that can be attached to a particular route defined
via the Kubernetes Gateway API.
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: Spec defines the content of the policy.
properties:
ppl:
description: |-
Policy rules in Pomerium Policy Language (PPL) syntax. May be expressed
in either YAML or JSON format.
type: string
type: object
status:
description: Status contains the status of the policy (e.g. is the policy
valid).
properties:
conditions:
description: Conditions describe the current state of the PolicyFilter.
items:
description: "Condition contains details for one aspect of the current
state of this API Resource.\n---\nThis struct is intended for
direct use as an array at the field path .status.conditions. For
example,\n\n\n\ttype FooStatus struct{\n\t // Represents the
observations of a foo's current state.\n\t // Known .status.conditions.type
are: \"Available\", \"Progressing\", and \"Degraded\"\n\t //
+patchMergeKey=type\n\t // +patchStrategy=merge\n\t // +listType=map\n\t
\ // +listMapKey=type\n\t Conditions []metav1.Condition `json:\"conditions,omitempty\"
patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"`\n\n\n\t
\ // other fields\n\t}"
properties:
lastTransitionTime:
description: |-
lastTransitionTime is the last time the condition transitioned from one status to another.
This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.
format: date-time
type: string
message:
description: |-
message is a human readable message indicating details about the transition.
This may be an empty string.
maxLength: 32768
type: string
observedGeneration:
description: |-
observedGeneration represents the .metadata.generation that the condition was set based upon.
For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date
with respect to the current state of the instance.
format: int64
minimum: 0
type: integer
reason:
description: |-
reason contains a programmatic identifier indicating the reason for the condition's last transition.
Producers of specific condition types may define expected values and meanings for this field,
and whether the values are considered a guaranteed API.
The value should be a CamelCase string.
This field may not be empty.
maxLength: 1024
minLength: 1
pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$
type: string
status:
description: status of the condition, one of True, False, Unknown.
enum:
- "True"
- "False"
- Unknown
type: string
type:
description: |-
type of condition in CamelCase or in foo.example.com/CamelCase.
---
Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be
useful (see .node.status.conditions), the ability to deconflict is important.
The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
maxLength: 316
pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$
type: string
required:
- lastTransitionTime
- message
- reason
- status
- type
type: object
type: array
x-kubernetes-list-map-keys:
- type
x-kubernetes-list-type: map
type: object
type: object
served: true
storage: true
subresources:
status: {}
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.14.0
labels:
app.kubernetes.io/name: pomerium
name: pomerium.ingress.pomerium.io
spec:
group: ingress.pomerium.io
names:
kind: Pomerium
listKind: PomeriumList
plural: pomerium
singular: pomerium
scope: Cluster
versions:
- name: v1
schema:
openAPIV3Schema:
description: |-
Pomerium define runtime-configurable Pomerium settings
that do not fall into the category of deployment parameters
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: PomeriumSpec defines Pomerium-specific configuration parameters.
properties:
accessLogFields:
description: AccessLogFields sets the <a href="https://www.pomerium.com/docs/reference/access-log-fields">access
fields</a> to log.
items:
type: string
type: array
authenticate:
description: |-
Authenticate sets authenticate service parameters.
If not specified, a Pomerium-hosted authenticate service would be used.
properties:
callbackPath:
description: |-
CallbackPath sets the path at which the authenticate service receives callback responses
from your identity provider. The value must exactly match one of the authorized redirect URIs for the OAuth 2.0 client.
<p>This value is referred to as the redirect_url in the OpenIDConnect and OAuth2 specs.</p>
<p>Defaults to <code>/oauth2/callback</code></p>
type: string
url:
description: "AuthenticateURL is a dedicated domain URL\nthe non-authenticated
persons would be referred to.\n\n\n<p><ul>\n <li>You do not
need to create a dedicated <code>Ingress</code> for this\n\t\tvirtual
route, as it is handled by Pomerium internally. </li>\n\t<li>You
do need create a secret with corresponding TLS certificate for
this route\n\t\tand reference it via <a href=\"#prop-certificates\"><code>certificates</code></a>.\n\t\tIf
you use <code>cert-manager</code> with <code>HTTP01</code> challenge,\n\t\tyou
may use <code>pomerium</code> <code>ingressClass</code> to solve
it.</li>\n</ul></p>"
format: uri
pattern: ^https://
type: string
required:
- url
type: object
authorizeLogFields:
description: AuthorizeLogFields sets the <a href="https://www.pomerium.com/docs/reference/authorize-log-fields">authorize
fields</a> to log.
items:
type: string
type: array
caSecrets:
description: CASecret should refer to k8s secrets with key <code>ca.crt</code>
containing a CA certificate.
items:
type: string
type: array
certificates:
description: Certificates is a list of secrets of type TLS to use
format: namespace/name
items:
type: string
type: array
codec_type:
description: CodecType sets the <a href="https://www.pomerium.com/docs/reference/codec-type">Codec
Type</a>.
enum:
- auto
- http1
- http2
- http3
type: string
cookie:
description: Cookie defines Pomerium session cookie options.
properties:
domain:
description: |-
Domain defaults to the same host that set the cookie.
If you specify the domain explicitly, then subdomains would also be included.
type: string
expire:
description: |-
Expire sets cookie and Pomerium session expiration time.
Once session expires, users would have to re-login.
If you change this parameter, existing sessions are not affected.
<p>See <a href="https://www.pomerium.com/docs/enterprise/about#session-management">Session Management</a>
(Enterprise) for a more fine-grained session controls.</p>
<p>Defaults to 14 hours.</p>
format: duration
type: string
httpOnly:
description: |-
HTTPOnly if set to <code>false</code>, the cookie would be accessible from within the JavaScript.
Defaults to <code>true</code>.
type: boolean
name:
description: |-
Name sets the Pomerium session cookie name.
Defaults to <code>_pomerium</code>
type: string
sameSite:
description: |-
SameSite sets the SameSite option for cookies.
Defaults to <code></code>.
enum:
- strict
- lax
- none
type: string
type: object
identityProvider:
description: |-
IdentityProvider configure single-sign-on authentication and user identity details
by integrating with your <a href="https://www.pomerium.com/docs/identity-providers/">Identity Provider</a>
properties:
provider:
description: |-
Provider is the short-hand name of a built-in OpenID Connect (oidc) identity provider to be used for authentication.
To use a generic provider, set to <code>oidc</code>.
enum:
- auth0
- azure
- github
- gitlab
- google
- oidc
- okta
- onelogin
- ping
type: string
refreshDirectory:
description: |-
RefreshDirectory is no longer supported,
please see <a href="https://docs.pomerium.com/docs/overview/upgrading#idp-directory-sync">Upgrade Guide</a>.
properties:
interval:
description: interval is the time that pomerium will sync
your IDP directory.
format: duration
type: string
timeout:
description: timeout is the maximum time allowed each run.
format: duration
type: string
required:
- interval
- timeout
type: object
requestParams:
additionalProperties:
type: string
description: RequestParams to be added as part of a sign-in request
using OAuth2 code flow.
format: namespace/name
type: object
requestParamsSecret:
description: RequestParamsSecret is a reference to a secret for
additional parameters you'd prefer not to provide in plaintext.
format: namespace/name
type: string
scopes:
description: |-
Scopes Identity provider scopes correspond to access privilege scopes
as defined in Section 3.3 of OAuth 2.0 RFC6749.
items:
type: string
type: array
secret:
description: |-
Secret containing IdP provider specific parameters.
and must contain at least <code>client_id</code> and <code>client_secret</code> values.
format: namespace/name
minLength: 1
type: string
serviceAccountFromSecret:
description: |-
ServiceAccountFromSecret is no longer supported,
see <a href="https://docs.pomerium.com/docs/overview/upgrading#idp-directory-sync">Upgrade Guide</a>.
type: string
url:
description: |-
URL is the base path to an identity provider's OpenID connect discovery document.
See <a href="https://pomerium.com/docs/identity-providers">Identity Providers</a> guides for details.
format: uri
pattern: ^https://
type: string
required:
- provider
- secret
type: object
jwtClaimHeaders:
additionalProperties:
type: string
description: |-
JWTClaimHeaders convert claims from the assertion token
into HTTP headers and adds them into JWT assertion header.
Please make sure to read
<a href="https://www.pomerium.com/docs/topics/getting-users-identity">
Getting User Identity</a> guide.
type: object
passIdentityHeaders:
description: PassIdentityHeaders sets the <a href="https://www.pomerium.com/docs/reference/pass-identity-headers">pass
identity headers</a> option.
type: boolean
programmaticRedirectDomains:
description: |-
ProgrammaticRedirectDomains specifies a list of domains that can be used for
<a href="https://www.pomerium.com/docs/capabilities/programmatic-access">programmatic redirects</a>.
items:
type: string
type: array
runtimeFlags:
additionalProperties:
type: boolean
description: RuntimeFlags sets the <a href="https://www.pomerium.com/docs/reference/runtime-flags">runtime
flags</a> to enable/disable certain features.
type: object
secrets:
description: "Secrets references a Secret with Pomerium bootstrap
parameters.\n\n\n<p>\n<ul>\n\t<li><a href=\"https://pomerium.com/docs/reference/shared-secret\"><code>shared_secret</code></a>\n\t\t-
secures inter-Pomerium service communications.\n\t</li>\n\t<li><a
href=\"https://pomerium.com/docs/reference/cookie-secret\"><code>cookie_secret</code></a>\n\t\t-
encrypts Pomerium session browser cookie.\n\t\tSee also other <a
href=\"#cookie\">Cookie</a> parameters.\n\t</li>\n\t<li><a href=\"https://pomerium.com/docs/reference/signing-key\"><code>signing_key</code></a>\n\t\tsigns
Pomerium JWT assertion header. See\n\t\t<a href=\"https://www.pomerium.com/docs/topics/getting-users-identity\">Getting
the user's identity</a>\n\t\tguide.\n\t</li>\n</ul>\n</p>\n<p>\nIn
a default Pomerium installation manifest, they would be generated
via a\n<a href=\"https://github.com/pomerium/ingress-controller/blob/main/config/gen_secrets/job.yaml\">one-time
job</a>\nand stored in a <code>pomerium/bootstrap</code> Secret.\nYou
may re-run the job to rotate the secrets, or update the Secret values
manually.\n</p>"
format: namespace/name
minLength: 1
type: string
setResponseHeaders:
additionalProperties:
type: string
description: |-
SetResponseHeaders specifies a mapping of HTTP Header to be added globally to all managed routes and pomerium's authenticate service.
See <a href="https://www.pomerium.com/docs/reference/set-response-headers">Set Response Headers</a>
type: object
storage:
description: |-
Storage defines persistent storage for sessions and other data.
See <a href="https://www.pomerium.com/docs/topics/data-storage">Storage</a> for details.
If no storage is specified, Pomerium would use a transient in-memory storage (not recommended for production).
properties:
postgres:
description: Postgres specifies PostgreSQL database connection
parameters
properties:
caSecret:
description: |-
CASecret should refer to a k8s secret with key <code>ca.crt</code> containing CA certificate
that, if specified, would be used to populate <code>sslrootcert</code> parameter of the connection string.
format: namespace/name
minLength: 1
type: string
secret:
description: |-
Secret specifies a name of a Secret that must contain
<code>connection</code> key. See
<a href="https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING">DSN Format and Parameters</a>.
Do not set <code>sslrootcert</code>, <code>sslcert</code> and <code>sslkey</code> via connection string,
use <code>tlsSecret</code> and <code>caSecret</code> CRD options instead.
format: namespace/name
minLength: 1
type: string
tlsSecret:
description: |-
TLSSecret should refer to a k8s secret of type <code>kubernetes.io/tls</code>
and allows to specify an optional client certificate and key,
by constructing <code>sslcert</code> and <code>sslkey</code> connection string
<a href="https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-PARAMKEYWORDS">
parameter values</a>.
format: namespace/name
minLength: 1
type: string
required:
- secret
type: object
type: object
timeouts:
description: Timeout specifies the <a href="https://www.pomerium.com/docs/reference/global-timeouts">global
timeouts</a> for all routes.
properties:
idle:
description: Idle specifies the time at which a downstream or
upstream connection will be terminated if there are no active
streams.
format: duration
type: string
read:
description: Read specifies the amount of time for the entire
request stream to be received from the client.
format: duration
type: string
write:
description: |-
Write specifies max stream duration is the maximum time that a stream’s lifetime will span.
An HTTP request/response exchange fully consumes a single stream.
Therefore, this value must be greater than read_timeout as it covers both request and response time.
format: duration
type: string
type: object
useProxyProtocol:
description: UseProxyProtocol enables <a href="https://www.pomerium.com/docs/reference/use-proxy-protocol">Proxy
Protocol</a> support.
type: boolean
required:
- secrets
type: object
status:
description: PomeriumStatus represents configuration and Ingress status.
properties:
ingress:
additionalProperties:
description: |-
ResourceStatus represents the outcome of the latest attempt to reconcile
relevant Kubernetes resource with Pomerium.
properties:
error:
description: Error that prevented latest observedGeneration
to be synchronized with Pomerium.
type: string
observedAt:
description: ObservedAt is when last reconciliation attempt
was made.
format: date-time
type: string
observedGeneration:
description: ObservedGeneration represents the <code>.metadata.generation</code>
that was last presented to Pomerium.
format: int64
type: integer
reconciled:
description: Reconciled is whether this object generation was
successfully synced with pomerium.
type: boolean
warnings:
description: Warnings while parsing the resource.
items:
type: string
type: array
required:
- reconciled
type: object
description: Routes provide per-Ingress status.
type: object
settingsStatus:
description: SettingsStatus represent most recent main configuration
reconciliation status.
properties:
error:
description: Error that prevented latest observedGeneration to
be synchronized with Pomerium.
type: string
observedAt:
description: ObservedAt is when last reconciliation attempt was
made.
format: date-time
type: string
observedGeneration:
description: ObservedGeneration represents the <code>.metadata.generation</code>
that was last presented to Pomerium.
format: int64
type: integer
reconciled:
description: Reconciled is whether this object generation was
successfully synced with pomerium.
type: boolean
warnings:
description: Warnings while parsing the resource.
items:
type: string
type: array
required:
- reconciled
type: object
type: object
type: object
served: true
storage: true
subresources:
status: {}
---
apiVersion: v1
kind: ServiceAccount
metadata:
labels:
app.kubernetes.io/name: pomerium
name: pomerium-controller
namespace: pomerium
---
apiVersion: v1
kind: ServiceAccount
metadata:
labels:
app.kubernetes.io/name: pomerium
name: pomerium-gen-secrets
namespace: pomerium
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
labels:
app.kubernetes.io/name: pomerium
name: pomerium-controller
rules:
- apiGroups:
- ""
resources:
- services
- endpoints
- secrets
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
- services/status
- secrets/status
- endpoints/status
verbs:
- get
- apiGroups:
- networking.k8s.io
resources:
- ingresses
- ingressclasses
verbs:
- get
- list
- watch
- apiGroups:
- networking.k8s.io
resources:
- ingresses/status
verbs:
- get
- patch
- update
- apiGroups:
- ingress.pomerium.io
resources:
- pomerium
verbs:
- get
- list
- watch
- apiGroups:
- ingress.pomerium.io
resources:
- pomerium/status
verbs:
- get
- update
- patch
- apiGroups:
- ""
resources:
- events
verbs:
- create
- patch
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
labels:
app.kubernetes.io/name: pomerium
name: pomerium-gen-secrets
rules:
- apiGroups:
- ""
resources:
- secrets
verbs:
- create
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
labels:
app.kubernetes.io/name: pomerium
name: pomerium-controller
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: pomerium-controller
subjects:
- kind: ServiceAccount
name: pomerium-controller
namespace: pomerium
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
labels:
app.kubernetes.io/name: pomerium
name: pomerium-gen-secrets
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: pomerium-gen-secrets
subjects:
- kind: ServiceAccount
name: pomerium-gen-secrets
namespace: pomerium
---
apiVersion: v1
kind: Service
metadata:
labels:
app.kubernetes.io/name: pomerium
name: pomerium-metrics
namespace: pomerium
spec:
ports:
- name: metrics
port: 9090
protocol: TCP
targetPort: metrics
selector:
app.kubernetes.io/name: pomerium
type: ClusterIP
---
apiVersion: v1
kind: Service
metadata:
labels:
app.kubernetes.io/name: pomerium
name: pomerium-proxy
namespace: pomerium
spec:
externalTrafficPolicy: Local
ports:
- name: https
port: 443
protocol: TCP
targetPort: https
- name: quic
port: 443
protocol: UDP
targetPort: quic
- name: http
port: 80
protocol: TCP
targetPort: http
selector:
app.kubernetes.io/name: pomerium
type: LoadBalancer
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app.kubernetes.io/name: pomerium
name: pomerium
namespace: pomerium
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: pomerium
template:
metadata:
labels:
app.kubernetes.io/name: pomerium
spec:
containers:
- args:
- all-in-one
- --pomerium-config=global
- --update-status-from-service=$(POMERIUM_NAMESPACE)/pomerium-proxy
- --metrics-bind-address=$(POD_IP):9090
env:
- name: TMPDIR
value: /tmp
- name: XDG_CACHE_HOME
value: /tmp
- name: POMERIUM_NAMESPACE
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
- name: POD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
image: pomerium/ingress-controller:main
imagePullPolicy: Always
name: pomerium
ports:
- containerPort: 443
name: https
protocol: TCP
- containerPort: 443
name: quic
protocol: UDP
- containerPort: 80
name: http
protocol: TCP
- containerPort: 9090
name: metrics
protocol: TCP
resources:
limits:
cpu: 5000m
memory: 1Gi
requests:
cpu: 300m
memory: 200Mi
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsGroup: 65532
runAsNonRoot: true
runAsUser: 65532
volumeMounts:
- mountPath: /tmp
name: tmp
nodeSelector:
kubernetes.io/os: linux
securityContext:
runAsNonRoot: true
sysctls:
- name: net.ipv4.ip_unprivileged_port_start
value: "80"
serviceAccountName: pomerium-controller
terminationGracePeriodSeconds: 10
volumes:
- emptyDir: {}
name: tmp
---
apiVersion: batch/v1
kind: Job
metadata:
labels:
app.kubernetes.io/name: pomerium
name: pomerium-gen-secrets
namespace: pomerium
spec:
template:
metadata:
labels:
app.kubernetes.io/name: pomerium
name: pomerium-gen-secrets
spec:
containers:
- args:
- gen-secrets
- --secrets=$(POD_NAMESPACE)/bootstrap
env:
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: pomerium/ingress-controller:main
imagePullPolicy: IfNotPresent
name: gen-secrets
securityContext:
allowPrivilegeEscalation: false
nodeSelector:
kubernetes.io/os: linux
restartPolicy: OnFailure
securityContext:
fsGroup: 1000
runAsNonRoot: true
runAsUser: 1000
serviceAccountName: pomerium-gen-secrets
---
apiVersion: networking.k8s.io/v1
kind: IngressClass
metadata:
labels:
app.kubernetes.io/name: pomerium
name: pomerium
spec:
controller: pomerium.io/ingress-controller