mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-22 01:17:16 +00:00
* fix: refactor ssa diff logic Signed-off-by: Leonardo Luz Almeida <leonardo_almeida@intuit.com> * fix: calculate ssa diff with smd.merge.Updater Signed-off-by: Leonardo Luz Almeida <leonardo_almeida@intuit.com> * chore: Add golangci config file Signed-off-by: Leonardo Luz Almeida <leonardo_almeida@intuit.com> * fix: remove wrong param passed to golanci-ghaction Signed-off-by: Leonardo Luz Almeida <leonardo_almeida@intuit.com> * doc: Add doc to the wrapper file Signed-off-by: Leonardo Luz Almeida <leonardo_almeida@intuit.com> * doc: Add instructions about how to extract the openapiv2 document from k8s Signed-off-by: Leonardo Luz Almeida <leonardo_almeida@intuit.com> * better wording Signed-off-by: Leonardo Luz Almeida <leonardo_almeida@intuit.com> * better code comments Signed-off-by: Leonardo Luz Almeida <leonardo_almeida@intuit.com> Signed-off-by: Leonardo Luz Almeida <leonardo_almeida@intuit.com>
33 lines
717 B
YAML
33 lines
717 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: missing
|
|
applications.argoproj.io/app-name: nginx
|
|
something-else: bla
|
|
name: nginx-deployment
|
|
namespace: default
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: nginx
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nginx
|
|
applications.argoproj.io/app-name: nginx
|
|
spec:
|
|
containers:
|
|
- image: 'nginx:1.23.1'
|
|
imagePullPolicy: Never
|
|
livenessProbe:
|
|
exec:
|
|
command:
|
|
- cat
|
|
- non-existent-file
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 180
|
|
name: nginx
|
|
ports:
|
|
- containerPort: 80
|