mirror of https://github.com/fluxcd/flagger.git
				
				
				
			Release loadtester v0.2.0
This commit is contained in:
		
							parent
							
								
									62f4a6cb96
								
							
						
					
					
						commit
						a9167801ba
					
				| 
						 | 
					@ -17,7 +17,7 @@ spec:
 | 
				
			||||||
    spec:
 | 
					    spec:
 | 
				
			||||||
      containers:
 | 
					      containers:
 | 
				
			||||||
        - name: loadtester
 | 
					        - name: loadtester
 | 
				
			||||||
          image: quay.io/stefanprodan/flagger-loadtester:0.1.0
 | 
					          image: quay.io/stefanprodan/flagger-loadtester:0.2.0
 | 
				
			||||||
          imagePullPolicy: IfNotPresent
 | 
					          imagePullPolicy: IfNotPresent
 | 
				
			||||||
          ports:
 | 
					          ports:
 | 
				
			||||||
            - name: http
 | 
					            - name: http
 | 
				
			||||||
| 
						 | 
					@ -27,7 +27,6 @@ spec:
 | 
				
			||||||
            - -port=8080
 | 
					            - -port=8080
 | 
				
			||||||
            - -log-level=info
 | 
					            - -log-level=info
 | 
				
			||||||
            - -timeout=1h
 | 
					            - -timeout=1h
 | 
				
			||||||
            - -log-cmd-output=true
 | 
					 | 
				
			||||||
          livenessProbe:
 | 
					          livenessProbe:
 | 
				
			||||||
            exec:
 | 
					            exec:
 | 
				
			||||||
              command:
 | 
					              command:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
apiVersion: v1
 | 
					apiVersion: v1
 | 
				
			||||||
name: loadtester
 | 
					name: loadtester
 | 
				
			||||||
version: 0.1.0
 | 
					version: 0.2.0
 | 
				
			||||||
appVersion: 0.1.0
 | 
					appVersion: 0.2.0
 | 
				
			||||||
kubeVersion: ">=1.11.0-0"
 | 
					kubeVersion: ">=1.11.0-0"
 | 
				
			||||||
engine: gotpl
 | 
					engine: gotpl
 | 
				
			||||||
description: Flagger's load testing services based on rakyll/hey that generates traffic during canary analysis when configured as a webhook.
 | 
					description: Flagger's load testing services based on rakyll/hey that generates traffic during canary analysis when configured as a webhook.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ replicaCount: 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
image:
 | 
					image:
 | 
				
			||||||
  repository: quay.io/stefanprodan/flagger-loadtester
 | 
					  repository: quay.io/stefanprodan/flagger-loadtester
 | 
				
			||||||
  tag: 0.1.0
 | 
					  tag: 0.2.0
 | 
				
			||||||
  pullPolicy: IfNotPresent
 | 
					  pullPolicy: IfNotPresent
 | 
				
			||||||
 | 
					
 | 
				
			||||||
logLevel: info
 | 
					logLevel: info
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -10,7 +10,7 @@ import (
 | 
				
			||||||
	"time"
 | 
						"time"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
var VERSION = "0.1.0"
 | 
					var VERSION = "0.2.0"
 | 
				
			||||||
var (
 | 
					var (
 | 
				
			||||||
	logLevel          string
 | 
						logLevel          string
 | 
				
			||||||
	port              string
 | 
						port              string
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue