mirror of
https://github.com/ultravioletrs/cocos.git
synced 2026-08-07 07:14:50 +00:00
42b05524c8
CI / lint (push) Has been cancelled
CI / test (agent) (push) Has been cancelled
CI / test (cli) (push) Has been cancelled
CI / test (cmd) (push) Has been cancelled
CI / test (internal) (push) Has been cancelled
CI / test (manager, true) (push) Has been cancelled
CI / test (pkg) (push) Has been cancelled
CI / upload-coverage (push) Has been cancelled
* feat: Implement structured logging with log forwarding for `ingress-proxy` and `computation-runner`, update component versions, and improve aTLS initialization and error handling. Signed-off-by: Sammy Oina <sammyoina@gmail.com> * refactor: Remove explicit AGENT_ENABLE_ATLS configuration and update component versions. Signed-off-by: Sammy Oina <sammyoina@gmail.com> * fix: Correct aTLS nonce verification for truncated hashes, delegate internal CVM server TLS to Ingress Proxy, and update component versions. Signed-off-by: Sammy Oina <sammyoina@gmail.com> * chore: Update package build sources to ultravioletrs/cocos main branch and remove local development keys and encrypted algorithm. Signed-off-by: Sammy Oina <sammyoina@gmail.com> * Remove the `pkg/server` module, including its generic gRPC and HTTP server implementations. Signed-off-by: Sammy Oina <sammyoina@gmail.com> * chore: clarify nonce truncation in the certificate verifier. Signed-off-by: Sammy Oina <sammyoina@gmail.com> --------- Signed-off-by: Sammy Oina <sammyoina@gmail.com>
21 lines
767 B
Desktop File
21 lines
767 B
Desktop File
[Unit]
|
|
Description=Cocos AI agent
|
|
After=network.target attestation-service.service log-forwarder.service computation-runner.service egress-proxy.service coco-keyprovider.service
|
|
Requires=log-forwarder.service computation-runner.service egress-proxy.service coco-keyprovider.service
|
|
Before=docker.service
|
|
|
|
[Service]
|
|
WorkingDirectory=/cocos
|
|
Environment="HTTP_PROXY=http://localhost:3128"
|
|
Environment="HTTPS_PROXY=http://localhost:3128"
|
|
Environment="NO_PROXY=localhost,127.0.0.1,.local,/run/cocos/"
|
|
StandardOutput=file:/var/log/cocos/agent.stdout
|
|
StandardError=file:/var/log/cocos/agent.stderr
|
|
EnvironmentFile=/etc/cocos/environment
|
|
ExecStart=/usr/bin/cocos-agent --config-file=/etc/cocos/cocos-agent.conf
|
|
Restart=always
|
|
RestartSec=5s
|
|
|
|
[Install]
|
|
WantedBy=default.target
|