Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testargoevents #9

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c4ce635
Create deployment.yml
gopaljayanthi Aug 8, 2022
e38e125
Create service.yml
gopaljayanthi Aug 8, 2022
d2c4c88
Update README.md
gopaljayanthi Aug 8, 2022
3c4bf3c
Update deployment.yml
gopaljayanthi Aug 8, 2022
d62f395
Update deployment.yml
gopaljayanthi Aug 8, 2022
e8d8054
Update service.yml
gopaljayanthi Aug 8, 2022
1d1b41a
Update deployment.yml
gopaljayanthi Aug 8, 2022
8ac8870
Update deployment.yml
gopaljayanthi Aug 8, 2022
0254283
Update deployment.yml
gopaljayanthi Aug 8, 2022
f86ee65
Update deployment.yml
gopaljayanthi Aug 8, 2022
1a5da33
Update deployment.yml
gopaljayanthi Aug 8, 2022
2f5b1b1
Update deployment.yml
gopaljayanthi Aug 8, 2022
5c3f605
Update deployment.yml
gopaljayanthi Aug 8, 2022
f78c631
Update deployment.yml
gopaljayanthi Aug 8, 2022
2e15644
removed code blue
gopaljayanthi Aug 8, 2022
7f293a4
Update deployment.yml
gopaljayanthi Aug 8, 2022
189cac2
test slack
gopaljayanthi Aug 8, 2022
e8d3eb9
Update deployment.yml
gopaljayanthi Aug 9, 2022
507ab26
Update deployment.yml
gopaljayanthi Aug 9, 2022
95b7358
Update deployment.yml
gopaljayanthi Aug 9, 2022
3ef1f40
added kustomization.yaml
Oct 4, 2022
f435696
build: automatic update of imageupdatetest2
Oct 4, 2022
c22ef51
build: automatic update of imageupdatetest2
Oct 4, 2022
bcb383d
build: automatic update of imageupdatetest2
Oct 6, 2022
e596032
build: automatic update of imageupdatetest2
Oct 7, 2022
20ea1bc
build: automatic update of imageupdatetest2
Oct 7, 2022
14541b7
build: automatic update of imageupdatetest2
Oct 7, 2022
93c1606
Update README.md
gopaljayanthi Oct 12, 2022
be0f00f
Update README.md
gopaljayanthi Oct 12, 2022
7d012a0
Update README.md
gopaljayanthi Oct 12, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@

#gopal
#test autotrigger
#test-argo-events
#test-argo-events PR
#test-argo-events PR take two


# Issuegen
This rest app you can use for generating log and metric data using api as well as UI also for
Expand Down
3 changes: 3 additions & 0 deletions kubernetes/.argocd-source-imageupdatetest2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
kustomize:
images:
- docker.io/opsmxdev/issuegen:v3.9.8
21 changes: 21 additions & 0 deletions kubernetes/deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: issuegen
name: issuegen
spec:
selector:
matchLabels:
app: issuegen
template:
metadata:
labels:
app: issuegen
code: red
spec:
containers:
- image: 'docker.io/opsmxdev/issuegen:v3.0.6'
name: issuegen
ports:
- containerPort: 8088
5 changes: 5 additions & 0 deletions kubernetes/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- deployment.yml
- service.yml
14 changes: 14 additions & 0 deletions kubernetes/service.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
apiVersion: v1
kind: Service
metadata:
labels:
app: issuegen
argocd.argoproj.io/instance: issuegen
name: issuegen-svc
spec:
ports:
- port: 3100
targetPort: 8088
selector:
app: issuegen
type: ClusterIP