You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that the K8s version 1.13 brings [taint-based eviction](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/#taint-based-evictions)
@@ -250,7 +262,6 @@ metadata:
250
262
name: postgres-operator
251
263
data:
252
264
inherited_labels: application,environment
253
-
...
254
265
```
255
266
256
267
**OperatorConfiguration**
@@ -265,7 +276,6 @@ configuration:
265
276
inherited_labels:
266
277
- application
267
278
- environment
268
-
...
269
279
```
270
280
271
281
**cluster manifest**
@@ -279,7 +289,7 @@ metadata:
279
289
application: my-app
280
290
environment: demo
281
291
spec:
282
-
...
292
+
...
283
293
```
284
294
285
295
**network policy**
@@ -294,7 +304,6 @@ spec:
294
304
matchLabels:
295
305
application: my-app
296
306
environment: demo
297
-
...
298
307
```
299
308
300
309
@@ -317,7 +326,6 @@ metadata:
317
326
data:
318
327
# referencing config map with custom settings
319
328
pod_environment_configmap: postgres-pod-config
320
-
...
321
329
```
322
330
323
331
**OperatorConfiguration**
@@ -331,7 +339,6 @@ configuration:
331
339
kubernetes:
332
340
# referencing config map with custom settings
333
341
pod_environment_configmap: postgres-pod-config
334
-
...
335
342
```
336
343
337
344
**referenced ConfigMap `postgres-pod-config`**
@@ -412,12 +419,12 @@ external systems but defined for an individual Postgres cluster in its manifest.
412
419
A typical example is a role for connections from an application that uses the
413
420
database.
414
421
415
-
* **Human users** originate from the Teams API that returns a list of the team
416
-
members given a team id. The operator differentiates between (a) product teams
417
-
that own a particular Postgres cluster and are granted admin rights to maintain
418
-
it, and (b) Postgres superuser teams that get the superuser access to all
419
-
Postgres databases running in a K8s cluster for the purposes of maintaining and
420
-
troubleshooting.
422
+
* **Human users** originate from the [Teams API](user.md#teams-api-roles) that
423
+
returns a list of the team members given a team id. The operator differentiates
424
+
between (a) product teams that own a particular Postgres cluster and are granted
425
+
admin rights to maintain it, and (b) Postgres superuser teams that get the
426
+
superuser access to all Postgres databases running in a K8s cluster for the
427
+
purposes of maintaining and troubleshooting.
421
428
422
429
## Understanding rolling update of Spilo pods
423
430
@@ -481,7 +488,7 @@ A secret can be pre-provisioned in different ways:
481
488
482
489
With the v1.2 release the Postgres Operator is shipped with a browser-based
483
490
configuration user interface (UI) that simplifies managing Postgres clusters
484
-
with the operator. The UI runs with Node.js and comes with it's own docker
491
+
with the operator. The UI runs with Node.js and comes with it's own Docker
485
492
image.
486
493
487
494
Run NPM to continuously compile `tags/js` code. Basically, it creates an
@@ -493,14 +500,14 @@ Run NPM to continuously compile `tags/js` code. Basically, it creates an
493
500
494
501
To build the Docker image open a shell and change to the `ui` folder. Then run:
0 commit comments