Skip to content

Commit 6ac7e75

Browse files
authored
Merge pull request #261 from telepresenceio/thallgren/v2.24.1
Release notes for 2.24.1
2 parents c8f8194 + 73d4529 commit 6ac7e75

File tree

4 files changed

+53
-3
lines changed

4 files changed

+53
-3
lines changed

versioned_docs/version-2.24/reference/cli/telepresence_genyaml_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Generate YAML for the agent's entry in the telepresence-agents configmap. See ge
1717

1818
### Flags:
1919
```
20-
--agent-image string The qualified name of the agent image (default "ghcr.io/telepresenceio/tel2:2.24.0")
20+
--agent-image string The qualified name of the agent image (default "ghcr.io/telepresenceio/tel2:2.24.1")
2121
--agent-port uint16 The port number you wish the agent to listen on. (default 9900)
2222
-h, --help help for config
2323
-i, --input string Path to the yaml containing the workload definition (i.e. Deployment, StatefulSet, etc). Pass '-' for stdin.. Mutually exclusive to --workload

versioned_docs/version-2.24/release-notes.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,31 @@
11

22
[comment]: # (Code generated by relnotesgen. DO NOT EDIT.)
33
# <img src="images/logo.png" height="64px"/> Telepresence Release Notes
4+
## Version 2.24.1 <span style="font-size: 16px;">(September 5)</span>
5+
## <div style="display:flex;"><img src="images/bugfix.png" alt="bugfix" style="width:30px;height:fit-content;"/><div style="display:flex;margin-left:7px;">[Fix invalid filename generated by telepresence gather-logs command](https://github.com/telepresenceio/telepresence/issues/3956)</div></div>
6+
<div style="margin-left: 15px">
7+
8+
The `telepresence gather-logs` command would generate a filename that was invalid on Windows unless the user specified the filename explicitly using the `--output-file` flag. This was fixed using a more condensed format for the timestamp in the filename.
9+
</div>
10+
11+
## <div style="display:flex;"><img src="images/bugfix.png" alt="bugfix" style="width:30px;height:fit-content;"/><div style="display:flex;margin-left:7px;">A `telepresence connect --docker` fails kubeconfig points to a port-forwarded localhost</div></div>
12+
<div style="margin-left: 15px">
13+
14+
Telepresence would fail to connect to a cluster from within a container if the kubeconfig pointed to a port-forwarded localhost because that localhost is not reachable from within the container. This situation is now detected so that the address used from within the container has "localhost" replaced with "host.docker.internal", or an alternative alias configured by the user using the new `docker.hostGateway` parameter in the client configuration.
15+
</div>
16+
17+
## <div style="display:flex;"><img src="images/bugfix.png" alt="bugfix" style="width:30px;height:fit-content;"/><div style="display:flex;margin-left:7px;">A `telepresence connect --docker` would fail with some k3s configurations</div></div>
18+
<div style="margin-left: 15px">
19+
20+
Telepresence would fail to connect to a k3s cluster unless the cluster's IP was a loopback address. This is now changed so that any IP:port combination is accepted as long as a container can be found that defines a mapping for it.
21+
</div>
22+
23+
## <div style="display:flex;"><img src="images/bugfix.png" alt="bugfix" style="width:30px;height:fit-content;"/><div style="display:flex;margin-left:7px;">[Restore default value for agent-state.yaml in the traffic-manager configmap](https://github.com/telepresenceio/telepresence/pull/3953)</div></div>
24+
<div style="margin-left: 15px">
25+
26+
The value was previously an empty string which caused problems when when Argo CD tried to synchronize it.
27+
</div>
28+
429
## Version 2.24.0 <span style="font-size: 16px;">(August 25)</span>
530
## <div style="display:flex;"><img src="images/feature.png" alt="feature" style="width:30px;height:fit-content;"/><div style="display:flex;margin-left:7px;">[Support for Docker Compose](howtos/docker-compose)</div></div>
631
<div style="margin-left: 15px">

versioned_docs/version-2.24/release-notes.mdx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,31 @@ import { Note, Title, Body } from '@site/src/components/ReleaseNotes'
77
[comment]: # (Code generated by relnotesgen. DO NOT EDIT.)
88

99
# Telepresence Release Notes
10+
## Version 2.24.1 <span style={{fontSize:'16px'}}>(September 5)</span>
11+
<Note>
12+
<Title type="bugfix" docs="https://github.com/telepresenceio/telepresence/issues/3956">Fix invalid filename generated by telepresence gather-logs command</Title>
13+
<Body>
14+
The `telepresence gather-logs` command would generate a filename that was invalid on Windows unless the user specified the filename explicitly using the `--output-file` flag. This was fixed using a more condensed format for the timestamp in the filename.
15+
</Body>
16+
</Note>
17+
<Note>
18+
<Title type="bugfix">A `telepresence connect --docker` fails kubeconfig points to a port-forwarded localhost</Title>
19+
<Body>
20+
Telepresence would fail to connect to a cluster from within a container if the kubeconfig pointed to a port-forwarded localhost because that localhost is not reachable from within the container. This situation is now detected so that the address used from within the container has "localhost" replaced with "host.docker.internal", or an alternative alias configured by the user using the new `docker.hostGateway` parameter in the client configuration.
21+
</Body>
22+
</Note>
23+
<Note>
24+
<Title type="bugfix">A `telepresence connect --docker` would fail with some k3s configurations</Title>
25+
<Body>
26+
Telepresence would fail to connect to a k3s cluster unless the cluster's IP was a loopback address. This is now changed so that any IP:port combination is accepted as long as a container can be found that defines a mapping for it.
27+
</Body>
28+
</Note>
29+
<Note>
30+
<Title type="bugfix" docs="https://github.com/telepresenceio/telepresence/pull/3953">Restore default value for agent-state.yaml in the traffic-manager configmap</Title>
31+
<Body>
32+
The value was previously an empty string which caused problems when when Argo CD tried to synchronize it.
33+
</Body>
34+
</Note>
1035
## Version 2.24.0 <span style={{fontSize:'16px'}}>(August 25)</span>
1136
<Note>
1237
<Title type="feature" docs="howtos/docker-compose">Support for Docker Compose</Title>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version: "2.24.0"
2-
dlVersion: "v2.24.0"
1+
version: "2.24.1"
2+
dlVersion: "v2.24.1"

0 commit comments

Comments
 (0)