horizon_dashboard_theme_customization

horizon dashboard theme customization

horizon dashboard의 로그인 화면을 아래와 같이 변경하고자 할때는 horizon dashboardcustom theme기능을 이용하면 된다.

방법은 두가지가 있다.

  1. horizon dashboard container image를 수정하여 테마를 추가하는 방법
  2. kolla-ansible배포시에 테마를 추가하여 배포하는 방법

이 문서에서는 두번째 방법인 kolla-ansible배포시에 테마를 추가하는 방법에 대해 설명한다.

기본적으로 horizon dashboard 테마는 defaultmaterial 테마가 있다.

horizon 소스는 깃헙 저장소 https://github.com/openstack/horizon 에서 확인할수 있으며 해당 소스를 로컬에 clone한 후에 horizon/openstack_dashboard/themes/ 디렉토리에 있는 default, example, material 중 하나를 복사하여 원하는 형태로 커스터마이징 하도록 한다.

이후 kolla-ansible배포 설정 디렉토리 /etc/kolla/config/horizon/themes/<테마명> 에 위치시킨다.

추가한 테마를 아래 설정파일에 등록한다. <테마명>을 아래 my_custom_theme 부분에 등록한다.

globals.yml

horizon_custom_themes:
  - name: my_custom_theme
    label: CustomTheme
# 여러개 등록 가능   

만약 기본 테마로 등록하고자 한다면 /etc/kolla/config/horizon/custom_local_settings파일에 아래와 같이 등록한다.

DEFAULT_THEME = 'my_custom_theme'

이후 배포/적용 하면 된다.

로그인하면 댓글을 남길 수 있습니다.
  • horizon_dashboard_theme_customization.txt
  • 마지막으로 수정됨: 2024/04/23 07:04
  • 저자 koov