Open burnbrigther opened 5 months ago
Thanks for the report - Definitely a comma. 7.3.1
resolves and is building as I write this.
Thank you for fixing this.
I can confirm that 7.3.1 fixes this issue - however, the docker latest tag is still mapped to 7.3.0. Perhaps this was intentional? If so, please disregard. Thanks for fixing!
Hello,
I have a "simple" docker swarm 1 master & 1 worker. I am using the last Traefik Cloudflare companion (7.3.1) and I am also having a warning syntax error :
Image: tiredofit/traefik-cloudflare-companion | Version 7.3.1 Type 'image_changelog' for details
2024-07-15.19:34:34 [STARTING] [traefik-cloudflare-companion] [1] Starting Traefik Cloudflare Companion traefik_cloudflare-companion.1.9o47vn7at0oo@swarm-master /usr/sbin/cloudflare-companion:289: SyntaxWarning: invalid escape sequence '.' if re.match('traefik.?.rule', prop): /usr/sbin/cloudflare-companion:322: SyntaxWarning: invalid escape sequence '.' if re.match('traefik.?.rule', prop): 2024-07-15.19:34:34 [STARTING] [monitoring] [1] Starting Zabbix Agent (modern) 7.0.0 Traceback (most recent call last): File "/usr/lib/python3.12/site-packages/urllib3/connection.py", line 174, in _new_conn conn = connection.create_connection( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/site-packages/urllib3/util/connection.py", line 72, in create_connection for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM): ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/socket.py", line 963, in getaddrinfo for res in _socket.getaddrinfo(host, port, family, type, proto, flags): ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ socket.gaierror: [Errno -2] Name does not resolve
Thanks for your help
Hi, I'm seeing the same thing:
/usr/sbin/cloudflare-companion:289: SyntaxWarning: invalid escape sequence '\.'
if re.match('traefik.*?\.rule', prop):
/usr/sbin/cloudflare-companion:322: SyntaxWarning: invalid escape sequence '\.'
if re.match('traefik.*?\.rule', prop):
Traceback (most recent call last):
File "/usr/lib/python3.12/site-packages/urllib3/connectionpool.py", line 715, in urlopen
httplib_response = self._make_request(
^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/site-packages/urllib3/connectionpool.py", line 416, in _make_request
conn.request(method, url, **httplib_request_kw)
File "/usr/lib/python3.12/site-packages/urllib3/connection.py", line 244, in request
super(HTTPConnection, self).request(method, url, body=body, headers=headers)
File "/usr/lib/python3.12/http/client.py", line 1336, in request
self._send_request(method, url, body, headers, encode_chunked)
File "/usr/lib/python3.12/http/client.py", line 1382, in _send_request
self.endheaders(body, encode_chunked=encode_chunked)
File "/usr/lib/python3.12/http/client.py", line 1331, in endheaders
self._send_output(message_body, encode_chunked=encode_chunked)
File "/usr/lib/python3.12/http/client.py", line 1091, in _send_output
self.send(msg)
File "/usr/lib/python3.12/http/client.py", line 1035, in send
self.connect()
File "/usr/lib/python3.12/site-packages/docker/transport/unixconn.py", line 27, in connect
sock.connect(self.unix_socket)
FileNotFoundError: [Errno 2] No such file or directory
Is this a change in Traefik V3?
Seeing the same as above, also trying to use this with Traefik v3. I see there's an open PR that might resolve it?
2024-10-02.02:17:14 [NOTICE] ** [timezone] Timezone: Setting to 'America/Los_Angeles' from 'Etc/GMT'
2024-10-01.19:17:14 [NOTICE] ** [monitoring] Container configured for monitoring with 'zabbix modern'
2024-10-01.19:17:15 [STARTING] ** [traefik-cloudflare-companion] [1] Starting Traefik Cloudflare Companion
/usr/sbin/cloudflare-companion:289: SyntaxWarning: invalid escape sequence '\.'
if re.match('traefik.*?\.rule', prop):
/usr/sbin/cloudflare-companion:322: SyntaxWarning: invalid escape sequence '\.'
if re.match('traefik.*?\.rule', prop):
2024-10-01.19:17:15 [STARTING] ** [monitoring] [1] Starting Zabbix Agent (modern) 7.0.0
Summary
In latest version, new error introduced.
Steps to reproduce
What is the expected correct behavior?
No error, functionality restored. Updates are still not working.
Relevant logs and/or screenshots
See above
Environment
docker on a privileged VM Latest version of cf-companion
Any logs | docker-compose.yml
``` services: # Cloudflare-Companion - Automatic CNAME DNS Creation cf-companion: container_name: cf-companion image: tiredofit/traefik-cloudflare-companion:latest restart: always profiles: ["core", "security", "all"] networks: - socket_proxy volumes: - /var/run/docker.sock:/var/run/docker.sock:ro environment: - TIMEZONE=$TZ - TRAEFIK_VERSION=2 - CF_TOKEN=$CLOUDFLARE_SUPER_API_KEY # Same as traefik - TARGET_DOMAIN=$DOMAINNAME_1 - DOMAIN1=$DOMAINNAME_1 - DOMAIN1_ZONE_ID=$CLOUDFLARE_ZONEID # Copy from Cloudflare Overview page - DOMAIN1_PROXIED=TRUE labels: # Add hosts specified in rules here to force cf-companion to create the CNAMEs # Since cf-companion creates CNAMEs based on host rules, this a workaround for non-docker/external apps # - "traefik.http.routers.cf-companion-rtr.rule=Host(`my-host.$DOMAINNAME_1`) || Host(`my-host.$DOMAINNAME_2`)" - "traefik.http.routers.cf-companion-rtr.rule=Host(`my-host.$DOMAINNAME_1`)" - "diun.enable=true" ``` ERROR: ``` SyntaxError: invalid syntax. Perhaps you forgot a comma? 2024-06-24.11:37:21 [STARTING] ** [traefik-cloudflare-companion] [68] Starting Traefik Cloudflare Companion File "/usr/sbin/cloudflare-companion", line 183 u'proxied': domain_info['proxied'] ^^^^^^^^^^^^^^^^^^^^^^ ```I tried both single domain and dual-domain configuration, as shown in the commented configuration code with same resulting error.
Possible fixes