Skip to content

Commit

Permalink
fix(config-server): correct access to config-server
Browse files Browse the repository at this point in the history
  • Loading branch information
jghamburg committed Jun 7, 2019
1 parent 0cda5c1 commit 2b18af5
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ plugins {
ext {
set('activeSpringProfiles', 'local')
set('tag', 'local')
set('chartRepoUrl', 'http://chartmuseum.local.svc.cluster.local/')
set('chartRepoUrl', 'http://chartmuseum.default.svc.cluster.local/')
}

group = 'com.gregturnquist.learningspringboot'
Expand Down
6 changes: 0 additions & 6 deletions docker/env/local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,4 @@ services:
PORT: 8080
DEBUG_PORT: "49999"
# JAVA_REMOTE_DEBUGGING: "false"
networks:
- learn-ms-network

networks:
learn-ms-network:
external: true

36 changes: 34 additions & 2 deletions src/main/helm/lsb2-chat/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ app:
eurekaserver:
uri: 'http://user:password@lsb2-eureka-server/eureka/'
rabbitmq:
host: local-rabbitmq
host: rabbitmq.default
port: 5672
username: guest
password: guest
mongodb:
host: local-mongo-server
host: mongo-server.default
port: 27017
dbname: lsb2db
replicaCount: 1
Expand Down Expand Up @@ -63,3 +63,35 @@ nodeSelector: {}
tolerations: []

affinity: {}

persistence:
enabled: true
## A manually managed Persistent Volume and Claim
## Requires persistence.enabled: true
## If defined, PVC must be created manually before volume will be bound
##
# existingClaim:

## The path the volume will be mounted at, useful when using different
## MongoDB images.
##
mountPath: /app/git

## The subdirectory of the volume to mount to, useful in dev environments
## and one PV for multiple services.
##
subPath: ""

## Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
# storageClass: "-"
accessModes:
- ReadWriteOnce
size: 1Gi
annotations: {}

0 comments on commit 2b18af5

Please sign in to comment.