Skip to content

Update README.md #381

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/ff-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.15
version: 0.1.16

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "2.0.0"
appVersion: "2.0.7"
15 changes: 2 additions & 13 deletions charts/ff-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,6 @@ Helm chart to deploy a Harness Feature Flags v2r Relay Proxy

## Install

Configure the helm repository:
```
helm repo add feature-flag-relay-proxy https://rssnyder.github.io/feature-flag-relay-proxy
```

Update the repository:
```
helm repo update feature-flag-relay-proxy
```

Install the v2 proxy:

The minimum configuration needed is:
Expand All @@ -22,11 +12,10 @@ The minimum configuration needed is:
- The address of a redis server

```
helm upgrade -i ff-proxy --namespace ff-proxy --create-namespace \
feature-flag-relay-proxy/ff-proxy \
helm upgrade -i ff-proxy --namespace ff-proxy --create-namespace .\
--set proxyKey=xxxx-xxx-xxx-xxxx \
--set authSecret=xxxx-xxx-xxx-xxxx \
--set redisAddress=redis:6379
--set redis.address=redis:6379
```

After install/upgrade the helm notes will display information on how to retrieve the proxy URL for your configuration for use with the SDK.
Expand Down
2 changes: 1 addition & 1 deletion charts/ff-proxy/templates/read-replica-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ spec:
protocol: TCP
name: sdk
selector:
{{- include "ff-proxy.readReplica.selectorLabels" . | nindent 4 }}
{{- include "ff-proxy.readReplica.SelectorLabels" . | nindent 4 }}
{{- end }}