VMware Integrated OpenStack 대시보드 로그인 페이지에 배경으로 표시될 사용자 지정 그래픽을 지정할 수 있습니다.
프로시저
- 사용자 지정 그래픽 파일을 VMware Integrated OpenStack 배포의 /home/viouser/custom/horizon/ 디렉토리에 로드합니다.
이 디렉토리는 VMware Integrated OpenStack 대시보드의 그래픽 파일에 대한 기본 디렉토리입니다.
- 텍스트 편집기에서 /home/viouser/custom/horizon/_styles.scss 파일을 엽니다.
- .login-bg 매개 변수의 주석 처리를 제거합니다.
.login-bg { height: 100%; body { background: #1D2226 url("/static/themes/vmware/CUSTOM-BACKGROUND-IMAGE.jpg") repeat-x 45% 0 !important; background-size: 100% auto !important; color: black; }
- 사용자 지정 배경 그래픽 파일을 참조하도록 .login-bg 매개 변수를 수정합니다.
- _styles.scss 파일을 저장합니다.
- .login-bg 매개 변수의 주석 처리를 제거합니다.
- custom.yml 파일을 구현합니다.
sudo mkdir -p /opt/vmware/vio/custom sudo cp /var/lib/vio/ansible/custom/custom.yml.sample /opt/vmware/vio/custom/custom.yml
- 텍스트 편집기에서 /opt/vmware/vio/custom/custom.yml 파일을 엽니다.
- custom.yml 설정을 사용하여 기본 스타일 시트 설정을 재정의하는 매개 변수의 주석 처리를 제거합니다.
# overwrite the _styles.scss file in the VMware theme horizon_custom_stylesheet: "/home/viouser/custom/horizon/_styles.scss"
- 사용자 지정 그래픽 파일이 포함될 사용자 지정 디렉토리를 지정하는 매개 변수의 주석 처리를 제거합니다.
# copy all custom images (or other files) to be accessible in horizon # IMPORTANT: this line must end with a "/" in order to place the files # in the right location for horizon horizon_custom_directory: "/home/viouser/custom/horizon/"
- custom.yml 파일을 저장합니다.
- custom.yml 설정을 사용하여 기본 스타일 시트 설정을 재정의하는 매개 변수의 주석 처리를 제거합니다.
결과
다음에 세션을 시작할 때 사용자 지정 배경 이미지가 대시보드 로그인 페이지에 표시됩니다.