Skip to content

Commit

Permalink
Changed the webclient ip.
Browse files Browse the repository at this point in the history
  • Loading branch information
Neoklosch committed Aug 29, 2017
1 parent 3475e35 commit 6cdbfb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webclient/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var ServiceListing = {
},
methods: {
fetchServices: function() {
this.$http.get('http://172.17.0.2:5023/v1/service').then(response => {
this.$http.get('http://172.18.0.10:5023/v1/service').then(response => {
this.services = response.body;
}, response => {
console.error(response.body);
Expand All @@ -38,7 +38,7 @@ var NodesListing = {
},
methods: {
fetchNodes: function() {
this.$http.get('http://172.17.0.2:5023/v1/nodes').then(response => {
this.$http.get('http://172.18.0.10:5023/v1/nodes').then(response => {
console.log(response.body);
this.nodes = response.body;
}, response => {
Expand All @@ -58,7 +58,7 @@ var BlueprintTemplate = {
},
methods: {
sendBlueprint: function(event) {
this.$http.post('http://172.17.0.2:5023/v1/service', this.blueprint, {headers: {'Content-Type': 'application/x-yaml'}}).then(response => {
this.$http.post('http://172.18.0.10:5023/v1/service', this.blueprint, {headers: {'Content-Type': 'application/x-yaml'}}).then(response => {
console.log(response.body);
}, response => {
console.error(response.body);
Expand Down

0 comments on commit 6cdbfb7

Please sign in to comment.