Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
cb9bdba
added k8s migration document
burakberkkeskin Jan 13, 2025
d7933b8
update minio and vault sections
burakberkkeskin Jan 13, 2025
1af19ad
updated creds
burakberkkeskin Jan 13, 2025
fb4c6a6
add spacetech info
burakberkkeskin Jan 13, 2025
8e94b77
update hvs token
burakberkkeskin Jan 13, 2025
7b4791a
optimize pre-migration steps
burakberkkeskin Jan 13, 2025
14a9bfc
update MinIO migration
burakberkkeskin Jan 14, 2025
67ef2eb
update vault and post migration parts
burakberkkeskin Jan 14, 2025
4369e31
change local names to example names
burakberkkeskin Jan 14, 2025
a1e108d
grammar and formatting fixes
burakberkkeskin Jan 14, 2025
8cde037
added keycloak extra settings
burakberkkeskin Jan 14, 2025
9b67f42
document moved
burakberkkeskin Jan 15, 2025
19e32ad
added DNS step
burakberkkeskin Jan 15, 2025
c8c1022
added SSL step
burakberkkeskin Jan 15, 2025
87d9e4a
added cluster steps
burakberkkeskin Jan 15, 2025
242d1e9
added installation steps
burakberkkeskin Jan 15, 2025
b24e768
added storage updates
burakberkkeskin Jan 15, 2025
fcd8bcc
added screenshots and optimized
burakberkkeskin Jan 15, 2025
d2d9cc3
update builds to build
burakberkkeskin Jan 15, 2025
25ddabb
fix extra caution colons
burakberkkeskin Jan 16, 2025
947c192
optimize bastion host requirements
burakberkkeskin Jan 16, 2025
cf2ae54
update check the data size section
burakberkkeskin Jan 16, 2025
6f5e41a
add SSL updates
burakberkkeskin Jan 16, 2025
90084b1
added ca certificate danger
burakberkkeskin Jan 16, 2025
76873da
add info for external stateful apps
burakberkkeskin Jan 16, 2025
3993091
added check version
burakberkkeskin Jan 16, 2025
b56e561
add namespace to the td custom domain command
burakberkkeskin Feb 5, 2025
e5a657d
add general info
burakberkkeskin Feb 5, 2025
9c06560
add SSL tip box
burakberkkeskin Feb 5, 2025
4b3893a
update organization name & id
burakberkkeskin Feb 6, 2025
f930a0f
add namespace to kubectl wait
burakberkkeskin Feb 6, 2025
eb4fdc6
added mapping table
burakberkkeskin Feb 6, 2025
65a39a4
add mkdir for dumped files
burakberkkeskin Feb 6, 2025
e8d7080
add info for backup user
burakberkkeskin Feb 6, 2025
6b27788
add mongodb resource preset
burakberkkeskin Feb 6, 2025
8633688
add delete vault
burakberkkeskin Feb 6, 2025
15776ec
add caution not to change config files
burakberkkeskin Feb 6, 2025
7ebada9
add enterprise app store custom domain section
burakberkkeskin Feb 6, 2025
f387b21
Merge branch 'develop' into feature/BE-4705
csonuryilmaz Feb 6, 2025
81232c3
fix grammar mistakes
burakberkkeskin Feb 10, 2025
86f3d08
Merge branch 'develop' into feature/BE-4705
csonuryilmaz Mar 7, 2025
4242dda
add required annotation and label
burakberkkeskin Mar 7, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,11 @@ After updating the `values.yaml` file, create a TLS secret for the custom domain

- The certificate (`cert`) should be in **PEM format** and it's recommended to include the leaf (app), intermediate, and root (CA) certificates to form a **full-chain** certificate.
- The private key (`key`) **should not be password-protected**.
:::
:::

```bash
kubectl create secret tls k8s-dist-spacetech-com-tls \
-n appcircle \
--cert=fullchain.crt \
--key=private.key
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ You can change how your store looks using the **[Customize](/enterprise-app-stor

For self-hosted specific settings, you should follow the documentation below.

## Custom Domain

To configure a custom domain for your Enterprise App Store, follow the instructions on the [Enterprise App Store settings page](/docs/enterprise-app-store/portal-settings.md#custom-domain).

## Tab Title Localization

You can change the Enterprise App Store tab title according to the language selected on the self-hosted Appcircle server.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,14 @@ webeventredis:
tls: true
```

:::danger **CA Certificate Caution**
Certain SSL providers, such as Let's Encrypt, may not include the root CA certificate in their `fullchain` certificate files. In such cases, the `fullchain` file will be incomplete, as the bottom-most certificate in the chain will not be the root certificate. This can lead to compatibility issues or crashes when the certificate is used.

To avoid such problems:
1. **Verify the Certificate Chain**: Ensure that the `fullchain` file includes all necessary certificates, starting from the server certificate up to the root certificate.
2. **Manually Append Missing Certificates**: If the root CA certificate is not included, download it from the CA's official website and append it to the `fullchain` file.
:::

### Updating the Certificate

To update the SSL certificate used on Appcircle server, perform the following steps to update the Helm chart and restart the required services:
Expand Down
Loading