- Changed chart name from api7ee to api7ee-demo-k8s in Chart.yaml
- Renamed helm/api7ee directory to helm/api7ee-demo-k8s
- Updated all references in build.yml workflow
- Updated all references in helm-release.yml workflow
- Updated main README.md with new chart name
- Updated Helm chart README with new chart name
- Verified all old references have been replaced
- Chart packages correctly as api7ee-demo-k8s-{version}.tgz
80 lines
1.5 KiB
YAML
80 lines
1.5 KiB
YAML
# Development environment values for api7ee
|
|
# This file contains development-specific configuration overrides
|
|
|
|
web:
|
|
replicaCount: 1
|
|
|
|
image:
|
|
tag: "latest"
|
|
pullPolicy: Always
|
|
|
|
resources:
|
|
limits:
|
|
cpu: 250m
|
|
memory: 256Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
|
|
api:
|
|
replicaCount: 1
|
|
|
|
image:
|
|
tag: "latest"
|
|
pullPolicy: Always
|
|
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
requests:
|
|
cpu: 250m
|
|
memory: 256Mi
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
|
|
env:
|
|
- name: LOG_LEVEL
|
|
value: "debug"
|
|
- name: ENVIRONMENT
|
|
value: "development"
|
|
- name: DEBUG
|
|
value: "true"
|
|
|
|
ingress:
|
|
enabled: false # Use port-forward in dev
|
|
|
|
podDisruptionBudget:
|
|
enabled: false
|
|
|
|
# Disable security features for easier debugging
|
|
podSecurityContext:
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
fsGroup: 0
|
|
|
|
securityContext:
|
|
allowPrivilegeEscalation: true
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
|
|
# API7 configuration for development
|
|
api7:
|
|
enabled: false # Disable API7 ADC in dev to simplify local testing
|
|
gateway:
|
|
adminUrl: http://api7ee3-0-1759339083-dp-manager.api7ee.svc.cluster.local:7900
|
|
adminKey: "dev-admin-key" # Use different key for dev
|
|
hosts:
|
|
- api7-demo-dev.commandware.it
|
|
tls:
|
|
enabled: false # No TLS in dev
|
|
plugins:
|
|
rateLimit:
|
|
enabled: false # No rate limiting in dev
|
|
auth:
|
|
enabled: false # No auth in dev for easier testing |