Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
chmouel authored Apr 17, 2024
1 parent ab89d02 commit 39a32ba
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions misc/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# System services

Somne system integrations, you may want to edit the download file and adjust your URL before applying it directly on your system/cluster
Somne system integrations, make sure to edit the downloaded file and adjust the target URL before applying it directly on your system/cluster

## macOS

```shell
mkdir -p $HOME/Library/LaunchAgents/
curl -L https://raw.githubusercontent.com/chmouel/gosmee/main/misc/com.chmouel.gosmee.plist -o $HOME/Library/LaunchAgents/com.chmouel.gosmee.plist
$EDITOR $HOME/Library/LaunchAgents/com.chmouel.gosmee.plist

launchctl load -w ~/Library/LaunchAgents/com.chmouel.gosmee.plist
```
Expand All @@ -16,11 +17,14 @@ launchctl load -w ~/Library/LaunchAgents/com.chmouel.gosmee.plist
```shell
mkdir -p $HOME/.config/systemd/user
curl -L https://raw.githubusercontent.com/chmouel/gosmee/main/misc/gosmee.service -o $HOME/.config/systemd/user/gosmee.service
$EDITOR $HOME/.config/systemd/user/gosmee.service
systemctl --user enable --now gosmee
```

## Kubernetes

```shell
kubectl apply -f https://raw.githubusercontent.com/chmouel/gosmee/main/misc/kubernetes-deployment.yaml
curl -LO https://raw.githubusercontent.com/chmouel/gosmee/main/misc/kubernetes-deployment.yaml
$EDITOR kubernetes-deployment.yaml
kubectl apply -f kubernetes-deployment.yaml
```

0 comments on commit 39a32ba

Please sign in to comment.