Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Wilkerson <[email protected]>
  • Loading branch information
wilkermichael committed Feb 8, 2024
1 parent b6db2ac commit 1aab36f
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 29 deletions.
86 changes: 59 additions & 27 deletions testing/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,19 @@ spec:
type: object
datadog:
properties:
aggregator:
default: last
enum:
- avg
- min
- max
- sum
- last
- percentile
- mean
- l2norm
- area
type: string
apiVersion:
default: v1
enum:
Expand Down Expand Up @@ -3002,11 +3015,26 @@ spec:
type: array
terminate:
type: boolean
ttlStrategy:
properties:
secondsAfterCompletion:
format: int32
type: integer
secondsAfterFailure:
format: int32
type: integer
secondsAfterSuccess:
format: int32
type: integer
type: object
required:
- metrics
type: object
status:
properties:
completedAt:
format: date-time
type: string
dryRunSummary:
properties:
count:
Expand Down Expand Up @@ -3300,6 +3328,19 @@ spec:
type: object
datadog:
properties:
aggregator:
default: last
enum:
- avg
- min
- max
- sum
- last
- percentile
- mean
- l2norm
- area
type: string
apiVersion:
default: v1
enum:
Expand Down Expand Up @@ -6307,6 +6348,19 @@ spec:
type: object
datadog:
properties:
aggregator:
default: last
enum:
- avg
- min
- max
- sum
- last
- percentile
- mean
- l2norm
- area
type: string
apiVersion:
default: v1
enum:
Expand Down Expand Up @@ -11880,11 +11934,13 @@ spec:
jsonPath: .status.replicas
name: Current
type: integer
- description: Total number of non-terminated pods targeted by this rollout that have the desired template spec
- description: Total number of non-terminated pods targeted by this rollout that
have the desired template spec
jsonPath: .status.updatedReplicas
name: Up-to-date
type: integer
- description: Total number of available pods (ready for at least minReadySeconds) targeted by this rollout
- description: Total number of available pods (ready for at least minReadySeconds)
targeted by this rollout
jsonPath: .status.availableReplicas
name: Available
type: integer
Expand Down Expand Up @@ -12667,19 +12723,6 @@ spec:
- name
type: object
type: object
consul:
properties:
canarySubsetName:
type: string
serviceName:
type: string
stableSubsetName:
type: string
required:
- canarySubsetName
- serviceName
- stableSubsetName
type: object
istio:
properties:
destinationRule:
Expand Down Expand Up @@ -15735,17 +15778,6 @@ rules:
- get
- update
- patch
- apiGroups:
- consul.hashicorp.com
resources:
- servicesplitters
- serviceresolvers
verbs:
- create
- watch
- get
- update
- patch
- apiGroups:
- getambassador.io
- x.getambassador.io
Expand Down Expand Up @@ -15958,7 +15990,7 @@ spec:
matchLabels:
app.kubernetes.io/name: argo-rollouts
strategy:
type: Recreate
type: RollingUpdate
template:
metadata:
labels:
Expand Down
4 changes: 2 additions & 2 deletions testing/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ consul-setup: kind deploy
kind: kind-delete
kind create cluster --image kindest/node:$(KUBERNETES_VERSION) --name=dc1 --config ./resources/kind_config.yaml

add-helm-Repo:
add-helm-repo:
helm repo add hashicorp https://helm.releases.hashicorp.com

kind-delete:
kind delete cluster --name=dc1

deploy:
helm install consul hashicorp/consul --version $(CONSUL_K8S_CHART_VERSION) -f values.yaml
helm repo update; helm install consul hashicorp/consul --version $(CONSUL_K8S_CHART_VERSION) -f values.yaml

# Install Argo
argo-setup: deploy-argo apply-crds
Expand Down

0 comments on commit 1aab36f

Please sign in to comment.