Created
July 5, 2022 10:10
-
-
Save praveen4g0/54dcdf6ad88684a908cebe4a15503ff4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kind: Deployment | |
apiVersion: apps/v1 | |
metadata: | |
name: gosmee-client | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: gosmee-client | |
template: | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: gosmee-client | |
spec: | |
containers: | |
- name: gosmee-client | |
image: 'ghcr.io/chmouel/gosmee:latest' | |
args: | |
- 'https://smee.io/1bwpqwUgaMkPYbRZ' | |
- $(SVC) | |
env: | |
- name: SVC | |
value: >- | |
http://el-pipelines-as-code-interceptor.openshift-pipelines.svc.cluster.local:8080 | |
restartPolicy: Always | |
strategy: | |
type: RollingUpdate | |
rollingUpdate: | |
maxUnavailable: 25% | |
maxSurge: 25% | |
revisionHistoryLimit: 10 | |
progressDeadlineSeconds: 600 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment