forked from lbovet/contador
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f3454cd
commit d112f59
Showing
13 changed files
with
524 additions
and
38 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,4 +63,4 @@ typings/ | |
# gontador | ||
.vscode | ||
vendor | ||
main | ||
gontador |
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash -xe | ||
#!/bin/bash -x | ||
|
||
# Build docker image in openshift | ||
# oc apply -f imagestream.yaml | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,51 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
annotations: | ||
description: Exposes the gontador service | ||
creationTimestamp: '2018-12-31T06:50:19Z' | ||
labels: | ||
app: gontador | ||
name: gontador | ||
namespace: gontador | ||
resourceVersion: '3000' | ||
spec: | ||
ports: | ||
- name: gontador | ||
port: 3000 | ||
protocol: TCP | ||
targetPort: 3000 | ||
selector: | ||
app: gontador | ||
sessionAffinity: None | ||
type: ClusterIP | ||
status: | ||
loadBalancer: {} | ||
kind: List | ||
items: | ||
- apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
annotations: | ||
description: Exposes the gontador service | ||
creationTimestamp: '2018-12-31T06:50:19Z' | ||
labels: | ||
app: gontador | ||
name: gontador-http | ||
namespace: gontador | ||
resourceVersion: '3000' | ||
spec: | ||
ports: | ||
- name: gontador-http | ||
port: 3000 | ||
protocol: TCP | ||
targetPort: 3000 | ||
# - name: gontador-grpc | ||
# port: 3001 | ||
# protocol: TCP | ||
# targetPort: 3001 | ||
selector: | ||
app: gontador | ||
sessionAffinity: None | ||
type: ClusterIP | ||
status: | ||
loadBalancer: {} | ||
- apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
annotations: | ||
description: Exposes the gontador grpc service | ||
creationTimestamp: '2018-12-31T06:50:19Z' | ||
labels: | ||
app: gontador | ||
name: gontador-grpc | ||
namespace: gontador | ||
resourceVersion: '3000' | ||
spec: | ||
ports: | ||
- name: gontador-grpc | ||
port: 3001 | ||
nodePort: 30001 | ||
selector: | ||
app: gontador | ||
type: NodePort | ||
status: | ||
loadBalancer: {} |
This file contains 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
Oops, something went wrong.