-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: strapi site * chore: CD * fix: unused strapi token * [warning] page not working anymore * fix: add articles * fix local db without ssl * fix: changed description length * fix: too long alternative text * fix: type long text description * fix: type --------- Co-authored-by: Matéo Mévollon <[email protected]>
- Loading branch information
Showing
259 changed files
with
18,153 additions
and
2,052 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,2 @@ | ||
projectName: ozensemble | ||
ciNamespace: ci-ozensemble | ||
|
||
dependencies: | ||
fabrique: | ||
extends: | ||
- name: ovh | ||
- name: buildkit-service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
api: | ||
cmd: true | ||
args: | ||
- sh | ||
- -c | ||
- "yarn strapi import --force -f seed-data.tar.gz && yarn start" | ||
~preDeploy.cleaner: | ||
match: | ||
kind: Deployment | ||
value: true | ||
|
||
# Strapi wants to move the entire uploads dir to a backup when you import data | ||
# so public cannot be a volume, it must be its parent | ||
# see https://github.com/strapi/strapi/issues/17809 | ||
initContainers: | ||
- name: move-public-to-volume | ||
image: | ||
"{{ .Values.global.registry }}/{{ .Values.global.projectName }}/{{ | ||
.Values.global.imageRepository }}/api:{{ .Values.global.imageTag }}" | ||
command: ["/bin/sh", "-c"] | ||
args: | ||
- cp -r public/* /mnt/public; | ||
volumeMounts: | ||
- name: public | ||
mountPath: /mnt/public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.