forked from argoproj/argo-helm
feat(argo-ci): remove deprecated helm chart (#734)
Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>main
parent
9548bffc69
commit
0919bbc116
|
@ -1,21 +0,0 @@
|
||||||
# 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
|
|
|
@ -1,12 +0,0 @@
|
||||||
apiVersion: v2
|
|
||||||
description: A Helm chart for Argo-CI
|
|
||||||
name: argo-ci
|
|
||||||
version: 1.0.0
|
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
|
||||||
appVersion: v1.0.0-alpha2
|
|
||||||
home: https://github.com/argoproj/argo-helm
|
|
||||||
deprecated: true
|
|
||||||
dependencies:
|
|
||||||
- name: argo
|
|
||||||
version: "^0.16.0"
|
|
||||||
repository: https://argoproj.github.io/argo-helm
|
|
|
@ -1,5 +0,0 @@
|
||||||
# Argo CI Chart
|
|
||||||
|
|
||||||
**Deprecated** - Use [Argo-Events](./argo-events) instead.
|
|
||||||
|
|
||||||
This is a **community maintained** chart.
|
|
|
@ -1,16 +0,0 @@
|
||||||
{{/* vim: set filetype=mustache: */}}
|
|
||||||
{{/*
|
|
||||||
Expand the name of the chart.
|
|
||||||
*/}}
|
|
||||||
{{- define "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).
|
|
||||||
*/}}
|
|
||||||
{{- define "fullname" -}}
|
|
||||||
{{- $name := default .Chart.Name .Values.nameOverride -}}
|
|
||||||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
|
|
||||||
{{- end -}}
|
|
|
@ -1,39 +0,0 @@
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: {{ .Release.Name }}-ci
|
|
||||||
labels:
|
|
||||||
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
heritage: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app: {{ .Release.Name }}-ci
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: {{ .Release.Name }}-ci
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
spec:
|
|
||||||
containers:
|
|
||||||
- name: ci
|
|
||||||
image: "{{ .Values.imageNamespace }}/{{ .Values.ciImage }}:{{ .Values.imageTag }}"
|
|
||||||
imagePullPolicy: {{ .Values.imagePullPolicy }}
|
|
||||||
env:
|
|
||||||
- name: IN_CLUSTER
|
|
||||||
value: "true"
|
|
||||||
- name: NAMESPACE
|
|
||||||
value: {{ .Values.workflowNamespace }}
|
|
||||||
- name: ARGO_CI_IMAGE
|
|
||||||
value: "{{ .Values.imageNamespace }}/{{ .Values.ciImage }}:{{ .Values.imageTag }}"
|
|
||||||
- name: CONTROLLER_INSTANCE_ID
|
|
||||||
value: {{ .Release.Name }}
|
|
||||||
ports:
|
|
||||||
- containerPort: 8001
|
|
||||||
- containerPort: 8002
|
|
||||||
{{- with .Values.imagePullSecrets }}
|
|
||||||
imagePullSecrets:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
|
@ -1,17 +0,0 @@
|
||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
name: {{ .Release.Name }}-ci
|
|
||||||
labels:
|
|
||||||
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
heritage: {{ .Release.Service }}
|
|
||||||
spec:
|
|
||||||
ports:
|
|
||||||
- port: 80
|
|
||||||
protocol: TCP
|
|
||||||
targetPort: 8001
|
|
||||||
selector:
|
|
||||||
app: {{ .Release.Name }}-ci
|
|
||||||
sessionAffinity: None
|
|
||||||
type: LoadBalancer
|
|
|
@ -1,14 +0,0 @@
|
||||||
imageNamespace: argoproj
|
|
||||||
ciImage: argoci
|
|
||||||
imageTag: v1.0.0-alpha2
|
|
||||||
imagePullPolicy: Always
|
|
||||||
# Secrets with credentials to pull images from a private registry
|
|
||||||
imagePullSecrets: []
|
|
||||||
# - name: argo-pull-secret
|
|
||||||
workflowNamespace: default
|
|
||||||
|
|
||||||
argo:
|
|
||||||
imagesNamespace: argoproj
|
|
||||||
installMinio: true
|
|
||||||
minioBucketName: argo-artifacts
|
|
||||||
useReleaseAsInstanceID: true
|
|
Loading…
Reference in New Issue