Commit a328775b authored by pg-ta's avatar pg-ta

service names updated by Admin

parent 0c3d60cb
Pipeline #2436 failed with stages
variables:
RELEASE_NAME: "project1390"
SERVICE_PORT: 4444
REGISTRY_URL: 751503455312.dkr.ecr.us-east-1.amazonaws.com/zalenium
stages:
- ReleaseCleanup
- ReleaseDeploy
ReleaseCleanup:
stage: ReleaseCleanup
script:
- echo `pwd`
- cd ./helm && /usr/local/bin/helm delete --purge $RELEASE_NAME && exit 0
allow_failure: true
ReleaseDeploy:
stage: ReleaseDeploy
script:
- echo `pwd`
- sed -i s/#SERVICE_PORT#/$SERVICE_PORT/g ./helm/service/values.yaml
- cd ./helm && /usr/local/bin/helm install service --name $RELEASE_NAME
\ No newline at end of file
apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Kubernetes
name: project7333
name: project1390
version: 0.1.0
\ No newline at end of file
......@@ -6,16 +6,16 @@
{{- end }}
{{- end }}
{{- else if contains "NodePort" .Values.service.type }}
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "project7333.fullname" . }})
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "project1390.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 {{ include "project7333.fullname" . }}'
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "project7333.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
You can watch the status of by running 'kubectl get svc -w {{ include "project1390.fullname" . }}'
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "project1390.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.kubernetes.io/name={{ include "project7333.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "project1390.name" . }},app.kubernetes.io/instance={{ .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 }}
\ No newline at end of file
......@@ -2,7 +2,7 @@
{{/*
Expand the name of the chart.
*/}}
{{- define "project7333.name" -}}
{{- define "project1390.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
{{- end -}}
......@@ -11,7 +11,7 @@ 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 "project7333.fullname" -}}
{{- define "project1390.fullname" -}}
{{- if .Values.fullnameOverride -}}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
{{- else -}}
......@@ -27,6 +27,6 @@ If release name contains chart name it will be used as a full name.
{{/*
Create chart name and version as used by the chart label.
*/}}
{{- define "project7333.chart" -}}
{{- define "project1390.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
\ No newline at end of file
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "project7333.fullname" . }}
name: {{ include "project1390.fullname" . }}
labels:
app.kubernetes.io/name: {{ include "project7333.name" . }}
helm.sh/chart: {{ include "project7333.chart" . }}
app.kubernetes.io/name: {{ include "project1390.name" . }}
helm.sh/chart: {{ include "project1390.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
app.kubernetes.io/name: {{ include "project7333.name" . }}
app.kubernetes.io/name: {{ include "project1390.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
template:
metadata:
labels:
app.kubernetes.io/name: {{ include "project7333.name" . }}
app.kubernetes.io/name: {{ include "project1390.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
spec:
containers:
......@@ -25,7 +25,7 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
env:
- name: "CONTEXT_PATH"
value: "/project7333"
value: "/project1390"
ports:
- name: http
containerPort: {{ .Values.service.internalport }}
......
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "project7333.fullname" . -}}
{{- $fullName := include "project1390.fullname" . -}}
{{- $ingressPaths := .Values.ingress.paths -}}
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: {{ $fullName }}
labels:
app.kubernetes.io/name: {{ include "project7333.name" . }}
helm.sh/chart: {{ include "project7333.chart" . }}
app.kubernetes.io/name: {{ include "project1390.name" . }}
helm.sh/chart: {{ include "project1390.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- with .Values.ingress.annotations }}
......
apiVersion: v1
kind: Service
metadata:
name: {{ include "project7333.fullname" . }}
name: {{ include "project1390.fullname" . }}
labels:
app.kubernetes.io/name: {{ include "project7333.name" . }}
helm.sh/chart: {{ include "project7333.chart" . }}
app.kubernetes.io/name: {{ include "project1390.name" . }}
helm.sh/chart: {{ include "project1390.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
spec:
......@@ -15,5 +15,5 @@ spec:
protocol: TCP
name: http
selector:
app.kubernetes.io/name: {{ include "project7333.name" . }}
app.kubernetes.io/name: {{ include "project1390.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
\ No newline at end of file
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "project7333.fullname" . }}-test-connection"
name: "{{ include "project1390.fullname" . }}-test-connection"
labels:
app.kubernetes.io/name: {{ include "project7333.name" . }}
helm.sh/chart: {{ include "project7333.chart" . }}
app.kubernetes.io/name: {{ include "project1390.name" . }}
helm.sh/chart: {{ include "project1390.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
annotations:
......@@ -14,5 +14,5 @@ spec:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "project7333.fullname" . }}:{{ .Values.service.port }}']
args: ['{{ include "project1390.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never
\ No newline at end of file
# Default values for project7333.
# Default values for project1390.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
repository: 751503455312.dkr.ecr.us-west-2.amazonaws.com/zalenium
repository: 751503455312.dkr.ecr.us-east-1.amazonaws.com/zalenium
tag: latest
pullPolicy: Always
......@@ -24,15 +24,15 @@ ingress:
#nginx.ingress.kubernetes.io/rewrite-target: /
#kubernetes.io/tls-acme: "true"
paths:
path: /project7333
path: /project1390
hosts:
# - afe6ec7ed3f3711e9b98006759708723-313212737.us-west-2.elb.amazonaws.com
- pgtest.altimetrik.com
- pgsandbox.altimetrik.com
tls:
- secretName: custom-tls-cert
hosts:
- pgtest.altimetrik.com
- pgsandbox.altimetrik.com
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
......
......@@ -19,7 +19,7 @@ public class DemoApplication {
// In this mode we would be connecting to remote web driver(similar to selenium
// grid) meaning the script would be executed in the remote server.
// Below is the sample code to initialize the web driver.
String remoteDriverHost = "https://pgtest.altimetrik.com/project7333";
String remoteDriverHost = "https://pgsandbox.altimetrik.com/project1390";
// To see live execution of the script in browser please open the link
// `{remoteDriverHost}/grid/admin/live`
DesiredCapabilities dc = DesiredCapabilities.chrome();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment