Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
github.com/rancher/ui
Perhaps you like managing Cattle.
Prerequisites:
If you're on a Mac and use Homebrew, you can follow these steps:
brew install node watchman yarn
Setup:
git clone 'https://github.com/rancher/ui'
cd 'ui'
./scripts/update-dependencies
Run development server:
yarn start
Connect to UI at https://localhost:8000/ . The server automatically picks up file changes, restarts itself, and reloads the web browser. This is intended only for development, see below for distributing customizations.
Run development server pointed at another instance of the Rancher API
RANCHER="https://rancher-server" yarn start
RANCHER can also be hostname[:port]
or ip[:port]
.
Rancher releases include a static copy of the UI passed in during build as a tarball. To generate that, run:
./scripts/build-static
We highly suggest making customizations as an ember-cli addon rather than forking this repo, making a bunch of changes and then fighting conflicts to keep it up to date with upstream forever. ui-driver-skel is an example addon that adds a custom screen for a docker-machine driver. If there is no way for you to get to what you want to change from an addon, PRs to this repo that add generalized hooks so that you can are accepted.
Rancher UI uses Ember CLI Pods for its project structure. We suggest reading the documentation if you have questions about the layout of the Rancher UI project.
Rancher UI uses Ember Engines to break the deliverable code into smaller chunks and only deliver what the end-user will need. When adding new components to an engine ensure you are only re-exporting the component back out of the engine if it is required and can not be placed in the shared
in-repo addon. When adding a new service or dependency that is required by an engine ensure that you pass the dependencies to the engine, more info can be found here
The shared
in-repo addon is a central repository of shared components for use with both the main app and any in-repo engine.
Rancher UI supports localization via translations files. You can swap translations live by utilizing the Language Picker located in the footer. If you would like to add your own translations files follow the directions below.
en-us.yaml
file located in /translations
folder and rename using the <language-code>/<country-code>.yaml
format (Supported Locales)languageName
value as this is what will be displayed in the language picker in the UISHFT + L
when not focused in an input or text area to toggle the languages between your currently selected language and a special none language to see what key values are missingIf you want to customize the UI, re-packaging all of Rancher to distribute the UI is possible but not terribly convenient. Instead you can change Cattle to load the UI source from a remote web server:
./scripts/build-static -l -c 'your-server.com'
./dist/static/release-2.10
so that it's available at https://your-server.com/release-2.10
-v
flaghttps://your-server.com/release-2.10
URL yarn global add ember-cli
yarn lint:hbs
yarn lint:js
yarn lint:js -- --fix
ember test
ember test --server
Please submit bugs and issues to rancher/rancher with a title starting with [UI]
.
Or just click here to create a new issue.
Copyright (c) 2014-2024 Rancher Labs, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.