horizon dashboard theme customization
horizon dashboard
의 로그인 화면을 아래와 같이 변경하고자 할때는 horizon dashboard
의 custom theme
기능을 이용하면 된다.
방법은 두가지가 있다.
horizon dashboard container image
를 수정하여 테마를 추가하는 방법kolla-ansible
배포시에 테마를 추가하여 배포하는 방법
이 문서에서는 두번째 방법인 kolla-ansible
배포시에 테마를 추가하는 방법에 대해 설명한다.
테마 추가 방법
기본적으로 horizon dashboard
테마는 default
와 material
테마가 있다.
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'
이후 배포/적용 하면 된다.
참조링크
로그인하면 댓글을 남길 수 있습니다.