@ -0,0 +1,21 @@ | |||
# Patterns to ignore when building packages. | |||
# This supports shell glob matching, relative path matching, and | |||
# negation (prefixed with !). Only one pattern per line. | |||
.DS_Store | |||
# Common VCS dirs | |||
.git/ | |||
.gitignore | |||
.bzr/ | |||
.bzrignore | |||
.hg/ | |||
.hgignore | |||
.svn/ | |||
# Common backup files | |||
*.swp | |||
*.bak | |||
*.tmp | |||
*~ | |||
# Various IDEs | |||
.project | |||
.idea/ | |||
*.tmproj |
@ -0,0 +1,5 @@ | |||
apiVersion: v1 | |||
appVersion: "1.0" | |||
description: Umbrella Chart for eShopOnContainers | |||
name: eshoponcontainers | |||
version: 0.1.0 |
@ -0,0 +1,19 @@ | |||
1. Get the application URL by running these commands: | |||
{{- if .Values.ingress.enabled }} | |||
{{- range .Values.ingress.hosts }} | |||
http{{ if $.Values.ingress.tls }}s{{ end }}://{{ . }}{{ $.Values.ingress.path }} | |||
{{- end }} | |||
{{- else if contains "NodePort" .Values.service.type }} | |||
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "eshoponcontainers.fullname" . }}) | |||
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") | |||
echo http://$NODE_IP:$NODE_PORT | |||
{{- else if contains "LoadBalancer" .Values.service.type }} | |||
NOTE: It may take a few minutes for the LoadBalancer IP to be available. | |||
You can watch the status of by running 'kubectl get svc -w {{ template "eshoponcontainers.fullname" . }}' | |||
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "eshoponcontainers.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') | |||
echo http://$SERVICE_IP:{{ .Values.service.port }} | |||
{{- else if contains "ClusterIP" .Values.service.type }} | |||
export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "eshoponcontainers.name" . }},release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") | |||
echo "Visit http://127.0.0.1:8080 to use your application" | |||
kubectl port-forward $POD_NAME 8080:80 | |||
{{- end }} |
@ -0,0 +1,32 @@ | |||
{{/* vim: set filetype=mustache: */}} | |||
{{/* | |||
Expand the name of the chart. | |||
*/}} | |||
{{- define "eshoponcontainers.name" -}} | |||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} | |||
{{- end -}} | |||
{{/* | |||
Create a default fully qualified app name. | |||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). | |||
If release name contains chart name it will be used as a full name. | |||
*/}} | |||
{{- define "eshoponcontainers.fullname" -}} | |||
{{- if .Values.fullnameOverride -}} | |||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} | |||
{{- else -}} | |||
{{- $name := default .Chart.Name .Values.nameOverride -}} | |||
{{- if contains $name .Release.Name -}} | |||
{{- .Release.Name | trunc 63 | trimSuffix "-" -}} | |||
{{- else -}} | |||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} | |||
{{- end -}} | |||
{{- end -}} | |||
{{- end -}} | |||
{{/* | |||
Create chart name and version as used by the chart label. | |||
*/}} | |||
{{- define "eshoponcontainers.chart" -}} | |||
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} | |||
{{- end -}} |
@ -0,0 +1,37 @@ | |||
{{- define "suffix-name" -}} | |||
{{- if .Values.app.name -}} | |||
{{- .Values.app.name -}} | |||
{{- else -}} | |||
{{- .Release.Name -}} | |||
{{- end -}} | |||
{{- end -}} | |||
{{- define "sql-name" -}} | |||
{{- if .Values.inf.sql.host -}} | |||
{{- .Values.inf.sql.host -}} | |||
{{- else -}} | |||
{{- printf "%s" "sql-data" -}} | |||
{{- end -}} | |||
{{- end -}} | |||
{{- define "url-of" -}} | |||
{{- $name := first .}} | |||
{{- $ctx := last .}} | |||
{{- if $ctx.Values.app.ingress.suffix -}} | |||
{{- $suffix := include "suffix-name" $ctx -}} | |||
{{- printf "%s/%s-%s" $ctx.Values.inf.k8s.dns $name $suffix -}} | |||
{{- else -}} | |||
{{- printf "%s/%s" $ctx.Values.inf.k8s.dns $name -}} | |||
{{- end -}} | |||
{{- end -}} | |||
{{ define "pathBase" -}} | |||
{{- if .Values.app.ingress.suffix -}} | |||
{{- $suffix := include "suffix-name" . -}} | |||
{{- printf "%s-%s" .Values.pathBase $suffix -}} | |||
{{- else -}} | |||
{{- .Values.pathBase -}} | |||
{{- end -}} | |||
{{- end -}} |
@ -0,0 +1,98 @@ | |||
# Default values for eshoponcontainers. | |||
# This is a YAML-formatted file. | |||
# Declare variables to be passed into your templates. | |||
replicaCount: 1 | |||
image: | |||
repository: nginx | |||
tag: stable | |||
pullPolicy: IfNotPresent | |||
service: | |||
type: ClusterIP | |||
port: 80 | |||
ingress: | |||
enabled: false | |||
annotations: {} | |||
# kubernetes.io/ingress.class: nginx | |||
# kubernetes.io/tls-acme: "true" | |||
path: / | |||
hosts: | |||
- chart-example.local | |||
tls: [] | |||
# - secretName: chart-example-tls | |||
# hosts: | |||
# - chart-example.local | |||
resources: {} | |||
# We usually recommend not to specify default resources and to leave this as a conscious | |||
# choice for the user. This also increases chances charts run on environments with little | |||
# resources, such as Minikube. If you do want to specify resources, uncomment the following | |||
# lines, adjust them as necessary, and remove the curly braces after 'resources:'. | |||
# limits: | |||
# cpu: 100m | |||
# memory: 128Mi | |||
# requests: | |||
# cpu: 100m | |||
# memory: 128Mi | |||
nodeSelector: {} | |||
tolerations: [] | |||
affinity: {} | |||
global: | |||
app: # app global settings | |||
name: "my-eshop" # Override for custom app name | |||
ingress: # ingress related settings | |||
suffix: false # if true ingress endpoints are suffixed with .Values.appName value (or .Release.Name if the 1st do not exist) | |||
entries: | |||
basket: basket-api # ingress entry for basket api | |||
catalog: catalog-api # ingress entry for catalog api | |||
ordering: ordering-api # ingress entry for ordering api | |||
identity: identity # ingress entry for identity api | |||
mvc: webmvc # ingress entry for web mvc | |||
spa: webspa # ingress entry for web spa | |||
status: webstatus # ingress entry for web status | |||
webshoppingapigw: webshoppingapigw # ingress entry for web shopping Agw | |||
webmarketingapigw: webmarketingapigw # ingress entry for web mkg Agw | |||
mobilemarketingapigw: mobilemarketingapigw # ingress entry for mobile mkg Agw | |||
mobileshoppingapigw: mobileshoppingapigw # ingress entry for mobile shopping Agw | |||
webshoppingagg: webshoppingagg # ingress entry for web shopping aggregator | |||
mobileshoppingagg: mobileshoppingagg # ingress entry for mobile shopping aggregator | |||
payment: payment-api # ingress entry for payment api | |||
locations: locations-api # ingress entry for locations api | |||
marketing: marketing-api # ingress entry for marketing api | |||
inf: | |||
sql: # inf.sql defines the sql server databases & logins | |||
# host: my-sql-server # Uncomment to specify a custom sql-server to be used. By default "sql-data-<appname>" will be used | |||
catalog: # inf.sql.catalog: settings for the catalog-api sql (user, pwd, db) | |||
user: sa # Catalog API SQL user | |||
pwd: Pass@word # Catalog API SQL pwd | |||
db: CatalogDb # Catalog API SQL db name | |||
ordering: # inf.sql.ordering: settings for the ordering-api sql (user, pwd, db) | |||
user: sa # Ordering API SQL user | |||
pwd: Pass@word # Ordering API SQL pwd | |||
db: OrderingDb # Ordering API SQL db name | |||
identity: | |||
user: sa # Ordering API SQL user | |||
pwd: Pass@word # Ordering API SQL pwd | |||
db: IdentityDb # Ordering API SQL db name | |||
redis: # inf.redis defines the redis' connection strings | |||
basket: | |||
constr: basket-data # Connection string to Redis used by Basket API | |||
keystore: | |||
constr: keystore-data # Connection string to Redis used as a Keystore (by Identity API) | |||
eventbus: | |||
constr: rabbitmq # Event bus connection strin g | |||
useAzure: false # true if use Azure Service Bus. False if RabbitMQ | |||
appinsights: | |||
key: "" # App insights to use | |||
k8s: # inf.k8s defines Kubernetes cluster global config | |||
dns: "" # k8s external IP or DNS. Value MUST BE PROVIDED using --set (--set inf.k8s.dns=my-cluster-dns) | |||
misc: # inf.misc contains miscellaneous configuration related to infrastructure | |||
useLoadTest: false # If running under loading test or not | |||
useAzureStorage: false # If catalog api uses azure storage or not |