Skip to content

Commit 853b270

Browse files
authored
chore: update timefreezing and tls docs (#502)
Signed-off-by: gouravkrosx <[email protected]>
1 parent c9d75e6 commit 853b270

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

versioned_docs/version-2.0.0/keploy-cloud/time-freezing.md

+12-7
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,23 @@ uname -a
5050

5151
### For Golang(Go) Applications -
5252

53+
> Note: Time freezing is only supported till go **1.22.x** version.
54+
5355
#### amd64/x86_64 🖥️
5456

5557
```Dockerfile
5658
# Download the time freeze agent
5759
ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/go_freeze_time_amd64 /lib/keploy/go_freeze_time_amd64
5860

59-
#set suitable permissions
61+
# set suitable permissions
6062
RUN chmod +x /lib/keploy/go_freeze_time_amd64
6163

6264
# run the binary
6365
RUN /lib/keploy/go_freeze_time_amd64
66+
67+
# build your binary with fake time (during test mode)
68+
RUN go build -tags=faketime <your_main_file>
69+
6470
```
6571

6672
OR
@@ -72,19 +78,18 @@ OR
7278

7379
ADD https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/assets/go_freeze_time_arm64 /lib/keploy/go_freeze_time_arm64
7480

75-
#set suitable permissions
81+
# set suitable permissions
7682
RUN chmod +x /lib/keploy/go_freeze_time_arm64
7783

7884
# run the binary
7985
RUN /lib/keploy/go_freeze_time_arm64
80-
```
81-
82-
3. Add a `faketime` tag to your build script
8386

84-
```bash
85-
go build -tags=faketime <your_main_file>
87+
# build your binary with fake time (during test mode)
88+
RUN go build -tags=faketime <your_main_file>
8689
```
8790

91+
3. Only Add `faketime` tag to your build script during <u>**Test MODE**</u>
92+
8893
4. Re-Build your Docker image.
8994
5. Now **add the `--freeze-time` flag** when running your tests with Keploy, like so:
9095

versioned_docs/version-2.0.0/running-keploy/docker-tls.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,18 @@ keywords:
2626
2. Add the following commands to your Dockerfile to download the `ca.crt` file and the `setup_ca.sh` script.
2727

2828
```dockerfile
29-
# Download the ca.crt file
30-
RUN curl -o ca.crt https://raw.githubusercontent.com/keploy/keploy/refs/heads/main/pkg/core/proxy/tls/asset/ca.crt
31-
RUN curl -o setup_ca.sh https://raw.githubusercontent.com/keploy/keploy/refs/heads/main/pkg/core/proxy/tls/asset/setup_ca.sh
29+
# Install the ca-certificates package to use the system certificates (the below command is for Debian-based systems, you may need to adjust it for other distributions)
30+
RUN apt-get update && apt-get install -y ca-certificates
31+
# Download the ca.crt file and the setup_ca.sh script
32+
ADD https://raw.githubusercontent.com/keploy/keploy/refs/heads/main/pkg/core/proxy/tls/asset/ca.crt ca.crt
33+
ADD https://raw.githubusercontent.com/keploy/keploy/refs/heads/main/pkg/core/proxy/tls/asset/setup_ca.sh setup_ca.sh
3234
# Give execute permission to the setup_ca.sh script
3335
RUN chmod +x setup_ca.sh
3436

35-
36-
# Run the CA setup script and then run the application server
37+
# Run the CA setup script and then run the application server
3738
CMD ["/bin/bash", "-c", "source ./setup_ca.sh && <your app running command>"]
3839
```
3940

40-
> Note: Also add **curl** installation command if **curl** is not installed on your image
41-
4241
To capture test cases, **Execute** the following command within your application's **root directory**.
4342

4443
```shell

0 commit comments

Comments
 (0)