Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Wiki
Manage
Activity
Members
Labels
Plan
Issues
53
Issue boards
Milestones
Wiki
Code
Merge requests
6
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MDM Lab
Wiki
Commits
4b486df7
Commit
4b486df7
authored
1 year ago
by
Remi PLANEL
Browse files
Options
Downloads
Patches
Plain Diff
Fix some typescript issue
parent
d99e4512
No related branches found
No related tags found
No related merge requests found
Pipeline
#119186
passed with stages
in 8 minutes
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+6
-5
6 additions, 5 deletions
.gitlab-ci.yml
components/content/Mermaid.vue
+1
-1
1 addition, 1 deletion
components/content/Mermaid.vue
with
7 additions
and
6 deletions
.gitlab-ci.yml
+
6
−
5
View file @
4b486df7
...
...
@@ -467,13 +467,14 @@ build:prod:wiki:
--set env="${ENV:-development}"
--values deploy/df-wiki/values.yaml
--values deploy/df-wiki/values.${ENV:-development}.yaml
-
kubectl --namespace ${NAMESPACE} wait pod -l "app.kubernetes.io/name=df-wiki" --for condition=Ready --timeout=600s
after_script
:
-
kubectl --namespace ${KUBE_NAMESPACE} wait pod -l "app.kubernetes.io/name=df-wiki" --for condition=Ready --timeout=600s
-
echo "Wiki pod is ready"
-
WIKI_POD=$(kubectl --namespace ${NAMESPACE} get pods -l "app.kubernetes.io/name=df-wiki" --output jsonpath='{.items[0].metadata.name}')
-
WIKI_POD=$(kubectl --namespace ${
KUBE_
NAMESPACE} get pods -l "app.kubernetes.io/name=df-wiki" --output jsonpath='{.items[0].metadata.name}')
-
echo ${WIKI_POD}
-
kubectl --namespace ${NAMESPACE} cp .output/public/ ${WIKI_POD}:/website
-
kubectl --namespace ${NAMESPACE} cp scripts/copy-structure-data.sh ${WIKI_POD}:/structure-data/sanitized-dump
-
kubectl --namespace ${NAMESPACE} exec ${WIKI_POD} -- bash -c 'cd /structure-data/sanitized-dump && bash copy-structure-data.sh'
-
kubectl --namespace ${
KUBE_
NAMESPACE} cp .output/public/ ${WIKI_POD}:/website
-
kubectl --namespace ${
KUBE_
NAMESPACE} cp scripts/copy-structure-data.sh ${WIKI_POD}:/structure-data/sanitized-dump
-
kubectl --namespace ${
KUBE_
NAMESPACE} exec ${WIKI_POD} -- bash -c 'cd /structure-data/sanitized-dump && bash copy-structure-data.sh'
...
...
This diff is collapsed.
Click to expand it.
components/content/Mermaid.vue
+
1
−
1
View file @
4b486df7
...
...
@@ -10,7 +10,7 @@
<
script
setup
lang=
"ts"
>
const
slot
=
useSlots
()
const
el
=
ref
(
null
)
const
el
:
Ref
<
HTMLElement
|
null
>
=
ref
(
null
)
const
rendered
=
ref
(
false
)
async
function
render
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment