Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 4 additions & 2 deletions charts/port-ocean/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ The following table lists the configuration parameters of the `port-ocean` chart
| `securityContext` | Security context applied to the container. | `{}` |
| `resources` | Container resource requests and limits. | `{}` |
| `nodeSelector` | NodeSelector applied to the pod. | `{}` |
| `annotations` | Annotations applied to the deployment. | `{}` |
| `tolerations` | Tolerations applied to the pod. | `[]` |
| `affinity` | Affinity applied to the pod. | `{}` |
| `imageRegistry` | Image registry override. | `""` |
Expand Down Expand Up @@ -103,6 +104,7 @@ The following table lists the configuration parameters of the `port-ocean` chart
| `liveEvents.worker.replicaCount` | Number of stand-alone live events worker replicas | `1` |
| `liveEvents.worker.resources` | Container resource requests and limits for stand-alone live events worker | `{}` |
| `liveEvents.deployment.rolloutStrategy` | Standalone live events worker deployment rollout strategy. | `RollingUpdate` |
| `liveEvents.annotations` | Deployment annotations for stand-alone live events worker. | `{}` |
| `liveEvents.service.enabled` | Specifies whether the service is enabled or not. | `true` |
| `liveEvents.service.type` | Service type for the Port application. | `ClusterIP` |
| `liveEvents.service.port` | Port number for the service. | `8000` |
Expand Down Expand Up @@ -130,9 +132,9 @@ To do so, you will need to run the `helm install` command with the following fla
```sh
helm install my-ocean-integration port-labs/port-ocean \
--create-namespace --namespace port-ocean \
-f custom_values.yaml \
-f custom_values.yaml \
# Flag for enabling self signed certificates
--set selfSignedCertificate.enabled=true \
--set selfSignedCertificate.enabled=true \
# Flag for passing the certificate file
--set-file selfSignedCertificate.certificate=/PATH/TO/CERTIFICATE.crt
```
4 changes: 4 additions & 0 deletions charts/port-ocean/templates/deployment-live-events.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ metadata:
name: {{ include "port-ocean.liveEvents.deploymentName" . }}
labels:
{{- include "port-ocean.liveEvents.labels" . | nindent 4 }}
{{- with .Values.liveEvents.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- with .Values.liveEvents.deployment.rolloutStrategy }}
strategy:
Expand Down
4 changes: 4 additions & 0 deletions charts/port-ocean/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ metadata:
name: {{ include "port-ocean.deploymentName" . }}
labels:
{{- include "port-ocean.labels" . | nindent 4 }}
{{- with .Values.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
strategy:
type: {{ .Values.workload.deployment.rolloutStrategy | default "Recreate" }}
Expand Down
3 changes: 3 additions & 0 deletions charts/port-ocean/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ clientTimeout: null

sendRawDataExamples: true

annotations: {}

secret:
create: true
name: ""
Expand Down Expand Up @@ -170,6 +172,7 @@ liveEvents:
# - "my-host.my-domain.com"
extraLabels: {}
extraConfig: {}
annotations: {}

livenessProbe:
enabled: true
Expand Down