forked from derekoneil/twitter-feed-oke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wercker.yml
62 lines (53 loc) · 1.81 KB
/
wercker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#Use OpenJDK base docker image from dockerhub and open the application port on the docker container
box:
id: openjdk:8
ports:
- 8080
#Build our application using Maven, just as we always have
build:
steps:
- install-packages:
packages: maven
- script:
name: maven build
code: mvn clean assembly:assembly
#Push the docker image with our built and tested application to the Oracle Container Registry
push-release:
steps:
- internal/docker-push:
username: $DOCKER_USERNAME
password: $OCI_AUTH_TOKEN
repository: $DOCKER_REGISTRY/$DOCKER_REPO
registry: https://$DOCKER_REGISTRY/v2
tag: $WERCKER_GIT_BRANCH-$WERCKER_GIT_COMMIT
working-dir: /pipeline/source
ports: 8080
cmd: sh target/bin/start
#Deploy our container from the Oracle Container Registry to the Oracle Container Engine (Kubernetes)
deploy-to-cluster:
box:
id: alpine
cmd: /bin/sh
steps:
- bash-template
- kubectl:
name: delete secret
server: $KUBERNETES_MASTER
token: $KUBERNETES_AUTH_TOKEN
insecure-skip-tls-verify: true
command: delete secret wercker; echo delete registry secret
- kubectl:
name: create secret
server: $KUBERNETES_MASTER
token: $KUBERNETES_AUTH_TOKEN
insecure-skip-tls-verify: true
command: create secret docker-registry wercker --docker-server=$DOCKER_REGISTRY --docker-email=nobody@oracle.com --docker-username=$DOCKER_USERNAME --docker-password='$OCI_AUTH_TOKEN'; echo create registry secret
- script:
name: "Visualise Kubernetes config"
code: cat kubernetes.yml
- kubectl:
name: deploy to kubernetes
server: $KUBERNETES_MASTER
token: $KUBERNETES_AUTH_TOKEN
insecure-skip-tls-verify: true
command: apply -f kubernetes.yml