Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit 44ead36

Browse files
committed
update README.md
1 parent 9ed9a31 commit 44ead36

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

README.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Helm Chart for phpLDAPadmin
22

3-
[![CircleCI](https://circleci.com/gh/cetic/helm-pgadmin.svg?style=shield)](https://circleci.com/gh/cetic/helm-pgadmin/tree/master)
3+
[![CircleCI](https://circleci.com/gh/cetic/helm-phpLDAPadmin.svg?style=svg)](https://circleci.com/gh/cetic/helm-phpLDAPadmin/tree/master)
44

55
## Introduction
66

@@ -32,7 +32,7 @@ The following items can be set via `--set` flag during installation or configure
3232
- **NodePort**: Exposes the service on each Node’s IP at a static port (the NodePort). You’ll be able to contact the NodePort service, from outside the cluster, by requesting `NodeIP:NodePort`.
3333
- **LoadBalancer**: Exposes the service externally using a cloud provider’s load balancer.
3434

35-
#### Configure how to persist data:
35+
#### Configure how to persist data (TODO):
3636

3737
- **Disable**: The data does not survive the termination of a pod.
3838
- **Persistent Volume Claim(default)**: A default `StorageClass` is needed in the Kubernetes cluster to dynamic provision the volumes. Specify another StorageClass in the `storageClass` or set `existingClaim` if you have already existing persistent volumes to use.
@@ -55,10 +55,14 @@ helm delete --purge my-release
5555

5656
## Configuration
5757

58-
The following table lists the configurable parameters of the pgAdmin chart and the default values.
58+
The following table lists the configurable parameters of the phpLDAPadmin chart and the default values.
5959

6060
| Parameter | Description | Default |
6161
| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------| ------------------------------- |
62+
| **ReplicaCount** |
63+
| `replicaCount` | number of phpLDAPadmin images | `1` |
64+
| **Env** |
65+
| `env` | See values.yaml | `nil` |
6266
| **Image** |
6367
| `image.repository` | phpldapadmin Image name | `osixia/phpldapadmin` |
6468
| `image.tag` | phpldapadmin Image tag | `0.7.1` |
@@ -67,19 +71,26 @@ The following table lists the configurable parameters of the pgAdmin chart and t
6771
| `service.type` | Type of service for phpldapadmin frontend | `LoadBalancer` |
6872
| `service.port` | Port to expose service | `80` |
6973
| `service.loadBalancerIP` | LoadBalancerIP if service type is `LoadBalancer` | `nil` |
74+
| `service.loadBalancerSourceRanges` | LoadBalancerSourceRanges | `nil` |
7075
| `service.annotations` | Service annotations | `{}` |
7176
| **Ingress** |
7277
| `ingress.enabled` | Enables Ingress | `false` |
7378
| `ingress.annotations` | Ingress annotations | `{}` |
7479
| `ingress.path` | Path to access frontend | `/` |
75-
| `ingress.host` | Ingress host | `nil` |
80+
| `ingress.hosts` | Ingress hosts | `nil` |
7681
| `ingress.tls` | Ingress TLS configuration | `[]` |
7782
| **ReadinessProbe** |
78-
| `readinessProbe` | Rediness Probe settings | `value_goes_here`|
83+
| `readinessProbe` | Rediness Probe settings | `{ "httpGet": { "path": "/", "port": http }}`|
7984
| **LivenessProbe** |
80-
| `livenessProbe` | Liveness Probe settings | `value_goes_here`|
85+
| `livenessProbe` | Liveness Probe settings | `{ "httpGet": { "path": "/", "port": http }}`|
8186
| **Resources** |
8287
| `resources` | CPU/Memory resource requests/limits | `{}` |
88+
| **nodeSelector** |
89+
| `nodeSelector` | nodeSelector | `{}` |
90+
| **tolerations** |
91+
| `tolerations` | tolerations | `{}` |
92+
| **affinity** |
93+
| `affinity` | affinity | `{}` |
8394

8495
## Credits
8596

0 commit comments

Comments
 (0)