Ivan Chalyk

Results 20 comments of Ivan Chalyk

This is alpine issue. I found workaround. Add these to keel deployment: ```yaml command: ['/bin/sh', '-c', 'apk add bind-tools && /bin/keel'] env: - name: GODEBUG value: netdns=go dnsConfig: options: -...

@zhaoyao91, @thearabbit try this: ```coffeescript import { Type } from 'meteor/jagi:astronomy' Type.create { name: 'Decimal' class: Decimal cast: (value) -> Decimal(value.toString()) validate: (args) -> Decimal.isDecimal(args) } ```

Here workaround: ```js if (loader) { loader.reset() delete window.google Loader.instance = undefined } ```

Look at url you trying to access if it localhost:8100 change it to http://server_ip:8100 and it should work

The issue in corednsaddress: ``` "corednsaddr": "192.168.0.1", // This is Evil line ``` Cause it is HARD CODED with initial config and in HA server mode this is not working....

Yes option when CoreDNS be private Netmaker Server IP is best! But... We launch servers separately with this env: ``` sed -i 's/COREDNS_IP//g' docker-compose.yml ``` On each server COREDNS_IP with...

After some time Meteor stop trying to reconnect, so you should listen some sort 'internetAvailable' event and manually call [Meteor.reconnect](https://docs.meteor.com/api/connections.html#Meteor-reconnect) or check [connection status](https://docs.meteor.com/api/connections.html#Meteor-status) and show user button with reconnect...