Configuring the ScaleOps Frontend Plugin#
This guide covers the configuration options available for the ScaleOps frontend plugin.
New Frontend System Configuration (Alpha)#
When using the new frontend system through the /alpha
export, the plugin is configured automatically with sensible defaults. The configuration in app-config.yaml
is still respected:
scaleops:
baseUrl: 'https://your-scaleops-instance.com'
linkToDashboard: true
authentication:
enabled: true
user: 'YOUR_USERNAME'
password: 'YOUR_PASSWORD'
The plugin will be automatically integrated into the appropriate entity pages without requiring manual route configuration.
Configuration File#
The plugin is configured through your app-config.yaml
. Here's a comprehensive example:
scaleops:
# Base URL of your ScaleOps instance
baseUrl: 'https://your-scaleops-instance.com'
# Enable direct links to ScaleOps dashboard
linkToDashboard: true
# Authentication configuration
authentication:
enabled: true
user: 'YOUR_USERNAME'
password: 'YOUR_PASSWORD'
Authentication Options#
Internal Authentication#
No Authentication#
Environment Variables#
Best Practices#
-
Authentication
- Use environment variables
- Rotate credentials regularly
- Implement proper secret management
- Use secure authentication methods
-
Performance
- Set appropriate refresh intervals
- Configure caching if needed
- Monitor API usage
- Handle errors gracefully
-
Integration
- Use consistent configuration
- Document custom settings
- Monitor dashboard performance
- Maintain security standards
For installation instructions, refer to the Installation Guide.