Skip to content

Commit

Permalink
Merge pull request #120 from shopware/fix-operator-parameters
Browse files Browse the repository at this point in the history
fix: set correct environment variables for cache adapter
  • Loading branch information
TrayserCassa authored Aug 20, 2024
2 parents 9c0d233 + 9dddf6b commit be92f1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions shopware/k8s-meta/1.0/config/packages/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ parameters:
env(K8S_FILESYSTEM_ENDPOINT): ""
# does not work yet, we need a factory or compiler pass for this
# env(K8S_CACHE_TYPE): "cache.adapter.redis_tag_aware"
env(K8S_REDIS_HOST): "localhost"
env(K8S_REDIS_PORT): "6379"
env(K8S_CACHE_INDEX): ""
env(K8S_CACHE_HOST): "localhost"
env(K8S_CACHE_PORT): "6379"
env(K8S_CACHE_INDEX): ""
shopware:
api:
jwt_key:
Expand Down Expand Up @@ -64,4 +64,4 @@ elasticsearch:
framework:
cache:
app: cache.adapter.redis_tag_aware
default_redis_provider: 'redis://%env(K8S_REDIS_HOST)%:%env(K8S_REDIS_PORT)%/%env(K8S_CACHE_INDEX)%'
default_redis_provider: 'redis://%env(K8S_CACHE_HOST)%:%env(K8S_CACHE_PORT)%/%env(K8S_CACHE_INDEX)%'

0 comments on commit be92f1a

Please sign in to comment.