updated library manager package version updated local kubernetes dnspull/2078/head
@ -0,0 +1,21 @@ | |||||
apiVersion: v1 | |||||
name: seq | |||||
description: A Helm chart for Kubernetes | |||||
# A chart can be either an 'application' or a 'library' chart. | |||||
# | |||||
# Application charts are a collection of templates that can be packaged into versioned archives | |||||
# to be deployed. | |||||
# | |||||
# Library charts provide useful utilities or functions for the chart developer. They're included as | |||||
# a dependency of application charts to inject those utilities and functions into the rendering | |||||
# pipeline. Library charts do not define any templates and therefore cannot be deployed. | |||||
type: application | |||||
# This is the chart version. This version number should be incremented each time you make changes | |||||
# to the chart and its templates, including the app version. | |||||
version: 0.1.0 | |||||
# This is the version number of the application being deployed. This version number should be | |||||
# incremented each time you make changes to the application. | |||||
appVersion: 1.0.0 |
@ -0,0 +1,28 @@ | |||||
kind: Deployment | |||||
apiVersion: apps/v1 | |||||
metadata: | |||||
name: seq | |||||
labels: | |||||
app: eshop | |||||
service: seq | |||||
spec: | |||||
replicas: 1 | |||||
selector: | |||||
matchLabels: | |||||
service: seq | |||||
template: | |||||
metadata: | |||||
labels: | |||||
app: eshop | |||||
service: seq | |||||
spec: | |||||
containers: | |||||
- name: seq | |||||
image: datalust/seq:latest | |||||
ports: | |||||
- name: http | |||||
containerPort: 80 | |||||
protocol: TCP | |||||
env: | |||||
- name: ACCEPT_EULA | |||||
value: "Y" |
@ -0,0 +1,22 @@ | |||||
kind: Ingress | |||||
apiVersion: networking.k8s.io/v1 | |||||
metadata: | |||||
name: seq | |||||
labels: | |||||
app: eshop | |||||
service: seq | |||||
annotations: | |||||
kubernetes.io/ingress.class: "nginx" | |||||
nginx.ingress.kubernetes.io/use-regex: "true" | |||||
nginx.ingress.kubernetes.io/rewrite-target: /$2 | |||||
spec: | |||||
rules: | |||||
- http: | |||||
paths: | |||||
- path: /seq(/|$)(.*) | |||||
pathType: Prefix | |||||
backend: | |||||
service: | |||||
name: seq | |||||
port: | |||||
number: 80 |
@ -0,0 +1,14 @@ | |||||
kind: Service | |||||
apiVersion: v1 | |||||
metadata: | |||||
name: seq | |||||
labels: | |||||
app: eshop | |||||
service: seq | |||||
spec: | |||||
ports: | |||||
- port: 80 | |||||
protocol: TCP | |||||
name: http | |||||
selector: | |||||
service: seq |
@ -1,3 +1,3 @@ | |||||
data: | data: | ||||
mvc_e: http://10.0.75.1/webmvc | |||||
mvc_e: http://192.168.1.199/webmvc | |||||
@ -1,3 +1,3 @@ | |||||
data: | data: | ||||
urls__IdentityUrl: http://10.0.75.1/identity | |||||
urls__mvc: http://10.0.75.1/webmvc | |||||
urls__IdentityUrl: http://192.168.49.2/identity | |||||
urls__mvc: http://192.168.49.2/webmvc |