Description
Studio failed to load because the Registry application is not properly configured. In order for Studio to work, the Registry application must have the "draft mutability" option enabled. This option must be enabled when installing/deploying Registry.
The following option should be set to true:
apicurio.rest.mutability.artifact-version-content.enabled
apiVersion: apps/v1
kind: Deployment
metadata:
name: apicurio-studio-ui
labels:
app: apicurio-studio-ui
spec:
replicas: 1
selector:
matchLabels:
app: apicurio-studio-ui
template:
metadata:
labels:
app: apicurio-studio-ui
spec:
containers:
- name: apicurio-studio-ui
image: quay.io/apicurio/apicurio-studio-ui:latest
ports:
- containerPort: 8080
env:
- name: APICURIO_UI_BACKEND_URL
value: "http://your_URL:8080"
- name: APICURIO_REST_MUTABILITY_ARTIFACT_VERSION_CONTENT_ENABLED
value: 'true'
installation in openshift
Activity