Skip to content

Commit

Permalink
chore - helm chart cleanups (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
marwen-abid authored Apr 24, 2024
1 parent 12a3f6f commit 24ee76b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dev/docker-compose-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'
services:
sdp-frontend:
container_name: sdp-frontend-mtn
image: stellar/stellar-disbursement-platform-frontend:multitenant-alpha
image: stellar/stellar-disbursement-platform-frontend:edge
ports:
- "3000:80"
volumes:
Expand Down
4 changes: 4 additions & 0 deletions helmchart/sdp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ the recipient’s registration process through the SEP-24 deposit flow.
| `anchorPlatform.route.domain` | Public domain/address of the Anchor Platform service. If using localhost, consider including the port as part of the domain. | `ap.localhost.com` |
| `anchorPlatform.route.sepPort` | The port of the sep server of the anchor platform. This is the public API that is meant to be reached by a client application, such as the stellar.toml file." | `8080` |
| `anchorPlatform.route.platformPort` | The port of the platform server of the anchor platform. This is the private API that is meant to be reached only by the SDP server, such as the PATCH /sep24/transactions endpoint.", | `8085` |
| `anchorPlatform.image` | Configuration related to the Docker image used by the Anchor Platform service. | |
| `anchorPlatform.image.repository` | Docker image repository for the Anchor Platform service. | `stellar/anchor-platform` |
| `anchorPlatform.image.pullPolicy` | Image pull policy for the Anchor Platform service. | `IfNotPresent` |
| `anchorPlatform.image.tag` | Docker image tag for the Anchor Platform service. | `2.6.2` |
| `anchorPlatform.deployment` | Configuration related to the deployment of the Anchor Platform. | |
| `anchorPlatform.deployment.annotations` | Annotations to be added to the deployment. | `{}` |
| `anchorPlatform.deployment.podAnnotations` | Annotations specific to the pods. | `{}` |
Expand Down
4 changes: 2 additions & 2 deletions helmchart/sdp/templates/02.2-deployment-ap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ spec:
- name: {{ .Chart.Name }}-ap
securityContext:
{{- tpl (toYaml .Values.anchorPlatform.deployment.securityContext) . | nindent 12 }}
image: "stellar/anchor-platform:2.6.0"
imagePullPolicy: "IfNotPresent"
image: "{{ .Values.anchorPlatform.image.repository }}:{{ .Values.anchorPlatform.image.tag }}"
imagePullPolicy: {{ .Values.anchorPlatform.image.pullPolicy }}
{{- if .Values.global.ephemeralDatabase }}
env:
- name: DATA_TYPE
Expand Down
8 changes: 8 additions & 0 deletions helmchart/sdp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,14 @@ anchorPlatform:
sepPort: "8080"
platformPort: "8085"

## @extra anchorPlatform.image Configuration related to the Docker image used by the Anchor Platform service.
## @param anchorPlatform.image.repository Docker image repository for the Anchor Platform service.
## @param anchorPlatform.image.pullPolicy Image pull policy for the Anchor Platform service.
## @param anchorPlatform.image.tag Docker image tag for the Anchor Platform service.
image:
repository: stellar/anchor-platform
pullPolicy: IfNotPresent
tag: "2.6.2"

## @extra anchorPlatform.deployment Configuration related to the deployment of the Anchor Platform.
## @param anchorPlatform.deployment.annotations Annotations to be added to the deployment.
Expand Down

0 comments on commit 24ee76b

Please sign in to comment.