Updating the version of argo-cd (#91)
This commit is contained in:
parent
e41f156cbe
commit
07b173f967
6 changed files with 1531 additions and 17 deletions
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v1
|
||||
appVersion: "0.12.3"
|
||||
appVersion: "1.1.2"
|
||||
description: A Helm chart for Argo-CD
|
||||
name: argo-cd
|
||||
version: 0.2.3
|
||||
version: 0.3.0
|
|
@ -31,6 +31,11 @@ spec:
|
|||
command: [argocd-repo-server]
|
||||
ports:
|
||||
- containerPort: {{ .Values.repoServer.containerPort }}
|
||||
livenessProbe:
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 10
|
||||
tcpSocket:
|
||||
port: {{ .Values.repoServer.containerPort }}
|
||||
readinessProbe:
|
||||
tcpSocket:
|
||||
port: {{ .Values.repoServer.containerPort }}
|
||||
|
|
|
@ -55,6 +55,12 @@ spec:
|
|||
{{- end }}
|
||||
ports:
|
||||
- containerPort: {{ .Values.server.containerPort }}
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /healthz
|
||||
port: {{ .Values.server.containerPort }}
|
||||
initialDelaySeconds: 3
|
||||
periodSeconds: 30
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /healthz
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -4,9 +4,6 @@ metadata:
|
|||
labels:
|
||||
app.kubernetes.io/name: {{ include "argo-cd.name" . }}
|
||||
helm.sh/chart: {{ include "argo-cd.chart" . }}
|
||||
# Don't apply label due to https://github.com/argoproj/argo-cd/issues/1425
|
||||
# app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||||
app.kubernetes.io/part-of: {{ include "argo-cd.name" . }}
|
||||
name: appprojects.argoproj.io
|
||||
annotations:
|
||||
|
@ -20,4 +17,104 @@ spec:
|
|||
- appproj
|
||||
- appprojs
|
||||
scope: Namespaced
|
||||
validation:
|
||||
openAPIV3Schema:
|
||||
properties:
|
||||
apiVersion:
|
||||
description: 'APIVersion defines the versioned schema of this representation
|
||||
of an object. Servers should convert recognized schemas to the latest
|
||||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources'
|
||||
type: string
|
||||
kind:
|
||||
description: 'Kind is a string value representing the REST resource this
|
||||
object represents. Servers may infer this from the endpoint the client
|
||||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds'
|
||||
type: string
|
||||
metadata: {}
|
||||
spec:
|
||||
description: AppProjectSpec is the specification of an AppProject
|
||||
properties:
|
||||
clusterResourceWhitelist:
|
||||
description: ClusterResourceWhitelist contains list of whitelisted cluster
|
||||
level resources
|
||||
items: {}
|
||||
type: array
|
||||
description:
|
||||
description: Description contains optional project description
|
||||
type: string
|
||||
destinations:
|
||||
description: Destinations contains list of destinations available for
|
||||
deployment
|
||||
items:
|
||||
description: ApplicationDestination contains deployment destination
|
||||
information
|
||||
properties:
|
||||
namespace:
|
||||
description: Namespace overrides the environment namespace value
|
||||
in the ksonnet app.yaml
|
||||
type: string
|
||||
server:
|
||||
description: Server overrides the environment server value in
|
||||
the ksonnet app.yaml
|
||||
type: string
|
||||
type: object
|
||||
type: array
|
||||
namespaceResourceBlacklist:
|
||||
description: NamespaceResourceBlacklist contains list of blacklisted
|
||||
namespace level resources
|
||||
items: {}
|
||||
type: array
|
||||
roles:
|
||||
description: Roles are user defined RBAC roles associated with this
|
||||
project
|
||||
items:
|
||||
description: ProjectRole represents a role that has access to a project
|
||||
properties:
|
||||
description:
|
||||
description: Description is a description of the role
|
||||
type: string
|
||||
groups:
|
||||
description: Groups are a list of OIDC group claims bound to this
|
||||
role
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
jwtTokens:
|
||||
description: JWTTokens are a list of generated JWT tokens bound
|
||||
to this role
|
||||
items:
|
||||
description: JWTToken holds the issuedAt and expiresAt values
|
||||
of a token
|
||||
properties:
|
||||
exp:
|
||||
format: int64
|
||||
type: integer
|
||||
iat:
|
||||
format: int64
|
||||
type: integer
|
||||
required:
|
||||
- iat
|
||||
type: object
|
||||
type: array
|
||||
name:
|
||||
description: Name is a name for this role
|
||||
type: string
|
||||
policies:
|
||||
description: Policies Stores a list of casbin formated strings
|
||||
that define access policies for the role in the project
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
required:
|
||||
- name
|
||||
type: object
|
||||
type: array
|
||||
sourceRepos:
|
||||
description: SourceRepos contains list of git repository URLs which
|
||||
can be used for deployment
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
type: object
|
||||
type: object
|
||||
version: v1alpha1
|
||||
|
|
|
@ -3,7 +3,7 @@ applicationController:
|
|||
servicePort: 8082
|
||||
image:
|
||||
repository: argoproj/argocd
|
||||
tag: v0.12.3
|
||||
tag: v1.1.2
|
||||
pullPolicy: Always
|
||||
volumeMounts: []
|
||||
volumes: []
|
||||
|
@ -15,11 +15,11 @@ server:
|
|||
serviceAnnotations: {}
|
||||
image:
|
||||
repository: argoproj/argocd
|
||||
tag: v0.12.3
|
||||
tag: v1.1.2
|
||||
pullPolicy: Always
|
||||
uiInitImage:
|
||||
repository: argoproj/argocd-ui
|
||||
tag: v0.12.3
|
||||
tag: v.1.1.2
|
||||
pullPolicy: Always
|
||||
extraArgs: []
|
||||
volumeMounts: []
|
||||
|
@ -31,7 +31,7 @@ repoServer:
|
|||
servicePort: 8081
|
||||
image:
|
||||
repository: argoproj/argocd
|
||||
tag: v0.12.3
|
||||
tag: v1.1.2
|
||||
pullPolicy: Always
|
||||
volumeMounts: []
|
||||
volumes: []
|
||||
|
@ -47,7 +47,7 @@ dexServer:
|
|||
pullPolicy: Always
|
||||
initImage:
|
||||
repository: argoproj/argocd
|
||||
tag: v0.12.3
|
||||
tag: v1.1.2
|
||||
pullPolicy: Always
|
||||
volumeMounts: []
|
||||
volumes: []
|
||||
|
|
Loading…
Reference in a new issue