Skip to content

Commit

Permalink
Release/781xx (#61)
Browse files Browse the repository at this point in the history
* Update version : docker-compose.yml

* Update version : values.yaml

* Update README.md

* Updated README.md files based on review comments
  • Loading branch information
rkapoor10 authored Feb 22, 2023
1 parent ac5b044 commit 7417904
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 14 deletions.
7 changes: 7 additions & 0 deletions docker-compose/harness/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ This page contains the instructions to run Harness CD Community Edition using Do
docker-compose run --rm proxy wait-for-it.sh ng-manager:7090 -t 180
```

6) Check if all the processes are up and in running state -
```shell
docker-compose ps
```


## Use Harness CD
1) Open http://localhost/#/signup and complete the registration form. Now your Harness CD account along with the first (admin) user is created. If you have already completed this step, then login to Harness CD at http://localhost/#/signin
2) Follow the Harness CD Community Edition [quickstart](https://ngdocs.harness.io/article/ltvkgcwpum-harness-community-edition-quickstart)
Expand All @@ -47,6 +53,7 @@ For example,
docker-compose logs -f manager
```


## Support
[Join the Harness Community Slack](https://join.slack.com/t/harnesscommunity/shared_invite/zt-y4hdqh7p-RVuEQyIl5Hcx4Ck8VCvzBw)
[Join the Harness Community Forum](https://community.harness.io/)
Expand Down
12 changes: 6 additions & 6 deletions docker-compose/harness/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.7"

services:
ng-ui:
image: harness/nextgenui-signed:0.331.16
image: harness/nextgenui-signed:0.336.3
deploy:
resources:
limits:
Expand Down Expand Up @@ -32,7 +32,7 @@ services:
harness-network:

manager:
image: harness/manager-signed:77630
image: harness/manager-signed:78109
deploy:
resources:
limits:
Expand All @@ -54,7 +54,7 @@ services:
harness-network:

ng-manager:
image: harness/ng-manager-signed:77630
image: harness/ng-manager-signed:78109
deploy:
resources:
limits:
Expand All @@ -70,7 +70,7 @@ services:
harness-network:

pipeline-service:
image: harness/pipeline-service-signed:1.16.3
image: harness/pipeline-service-signed:1.19.3
deploy:
resources:
limits:
Expand All @@ -87,7 +87,7 @@ services:
harness-network:

platform-service:
image: harness/platform-service-signed:77502
image: harness/platform-service-signed:77901
deploy:
resources:
limits:
Expand Down Expand Up @@ -130,7 +130,7 @@ services:
harness-network:

delegate-proxy:
image: harness/delegate-proxy-signed:77629
image: harness/delegate-proxy-signed:78106
deploy:
resources:
limits:
Expand Down
38 changes: 35 additions & 3 deletions helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ This page contains the instructions necessary to install and manage Harness CD C
1) Start Harness CD using the helm-chart
```shell
helm install harness ./harness --create-namespace --namespace harness
```

```
## Use Harness CD
1) Follow the notes printed by Helm to access the application.
You should wait for the harness-cd application to start before moving to Step 2.
Expand All @@ -54,9 +53,42 @@ kubectl get pods -n harness
```shell
kubectl logs -n harness -f <POD-NAME>
```
---
You may also run into a situation where the namespace `harness` is already present.

Check if namespace `harness` is already present
```shell
kubectl get namespaces
```

In that case you may delete the old namespace using -

```shell
kubectl delete ns harness
```
and run the following installation again -
```shell
helm install harness ./harness --create-namespace --namespace harness
```

---

In case the connection is refused, and you get a similar error message as mentioned below -

```
The connection to the server 0.0.0.0:58909 was refused - did you specify the right host or port?
```

Make sure minikube is up and running through docker dashboard or using the following command
```shell
minikube status [flags]
```


## Support
[Join the Harness Community Slack](https://join.slack.com/t/harnesscommunity/shared_invite/zt-y4hdqh7p-RVuEQyIl5Hcx4Ck8VCvzBw)
For any further blockers, doubts -
[Join the Harness Community Slack](https://join.slack.com/t/harnesscommunity/shared_invite/zt-y4hdqh7p-RVuEQyIl5Hcx4Ck8VCvzBw)
and
[Join the Harness Community Forum](https://community.harness.io/)

## Profiles
Expand Down
10 changes: 5 additions & 5 deletions helm/harness/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@ secret:
versions:
busybox: 1.35.0
log_service: release-18
manager: 77630
manager: 78109
mongo: 4.2.19
ng_auth_ui: 0.45.0
ng_ui: 0.331.16
ng_ui: 0.336.3
nginx: 1.21.4
redis: 6.2.7-alpine
scm: release-88-ubi
platform_service: 77502
delegate_proxy: 77629
pipeline_service: 1.16.3
platform_service: 77901
delegate_proxy: 78106
pipeline_service: 1.19.3

# Resource request & limit configuration per application
ng_ui:
Expand Down

0 comments on commit 7417904

Please sign in to comment.