File tree Expand file tree Collapse file tree 3 files changed +24
-0
lines changed
plugins/tutor-contrib-paragon/tutorparagon/patches Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ {% if MFE_HOST_EXTRA_FILES %}
2+ {% if not PARAGON_ENABLED_THEMES %} {% set PARAGON_ENABLED_THEMES = ['light'] %} {% endif %}
3+ - name: paragon-static-files
4+ files:
5+ - core.min.css=../{{ PARAGON_COMPILED_THEMES_PATH }}/core/core.min.css {% for theme in PARAGON_ENABLED_THEMES %}
6+ - {{ theme }}.min.css=../{{ PARAGON_COMPILED_THEMES_PATH }}/themes/{{ theme }}/{{ theme }}.min.css {% endfor %}
7+ options:
8+ labels:
9+ app.kubernetes.io/name: paragon-static-files
10+ {% endif %}
Original file line number Diff line number Diff line change 1+ - mountPath: /paragon-statics
2+ name: static-files
3+ readOnly: true
Original file line number Diff line number Diff line change 1+ {% if not PARAGON_ENABLED_THEMES %} {% set PARAGON_ENABLED_THEMES = ['light'] %} {% endif %}
2+ - name: static-files
3+ configMap:
4+ name: paragon-static-files
5+ items:
6+ - key: core.min.css
7+ path: core/core.min.css
8+ {% for theme in PARAGON_ENABLED_THEMES %}
9+ - key: {{ theme }}.min.css
10+ path: themes/{{ theme }}/{{ theme }}.min.css
11+ {% endfor %}
You can’t perform that action at this time.
0 commit comments