Skip to content
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

Fixes #99

Merged
merged 2 commits into from
Jul 7, 2023
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 .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A clear and concise description of what the bug is.

Steps to reproduce the behavior:

1. Deploy nginx_k8s_loadbalancer using
1. Deploy nginx_loadbalancer_kubernetes using
2. View output/logs/configuration on '...'
3. See error

Expand All @@ -23,7 +23,7 @@ A clear and concise description of what you expected to happen.

### Your environment

- Version of the nginx_k8s_loadbalancer or specific commit
- Version of the nginx_loadbalancer_kubernetes or specific commit
<!-- - Version of project language -->
- Target deployment platform

Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing Guidelines

The following is a set of guidelines for contributing to the nginx_k8s_loadbalancer. We really appreciate that you are considering contributing!
The following is a set of guidelines for contributing to the nginx_loadbalancer_kubernetes. We really appreciate that you are considering contributing!

#### Table Of Contents

Expand All @@ -14,7 +14,7 @@ The following is a set of guidelines for contributing to the nginx_k8s_loadbalan

## Getting Started

Follow our [Installation Guide](https://github.com/nginxinc/nginx-loadbalancer-kubernetes/blob/main/README.md#Installation) to get the nginx_k8s_loadbalancer up and running.
Follow our [Installation Guide](https://github.com/nginxinc/nginx-loadbalancer-kubernetes/blob/main/README.md#Installation) to get the nginx_loadbalancer_kubernetes up and running.

<!-- ### Project Structure (OPTIONAL) -->

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,19 +111,19 @@ There is a much more detailed [Installation Reference](docs/README.md) available

2. Apply the Namespace

```kubectl apply -f deployments/namespace.yaml```
```kubectl apply -f deployments/deployment/namespace.yaml```

3. Apply the RBAC resources

```./deployments/rbac/apply.sh```

4. Update / Apply the ConfigMap (For best results update the `nginx-hosts` values first)

```kubectl apply -f deployments/configmap.yaml```
```kubectl apply -f deployments/deployment/configmap.yaml```

5. Apply the Deployment

```kubectl apply -f deployments/deployment.yaml```
```kubectl apply -f deployments/deployment/deployment.yaml```

6. Check the logs

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Latest Versions

We advise users to run or update to the most recent release of the nginx_k8s_loadbalancer. Older versions of the nginx_k8s_loadbalancer may not have all enhancements and/or bug fixes applied to them.
We advise users to run or update to the most recent release of the nginx_loadbalancer_kubernetes. Older versions of the nginx_loadbalancer_kubernetes may not have all enhancements and/or bug fixes applied to them.

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

We use GitHub for tracking bugs and feature requests related to this project.

Don't know how something in the nginx_k8s_loadbalancer works? Curious if the nginx_k8s_loadbalancer can achieve your desired functionality? Please open an Issue on GitHub with the label `question`.
Don't know how something in the nginx_loadbalancer_kubernetes works? Curious if the nginx_loadbalancer_kubernetes can achieve your desired functionality? Please open an Issue on GitHub with the label `question`.

## NGINX Specific Questions and/or Issues

Expand Down
4 changes: 4 additions & 0 deletions deployments/rbac/apply.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
#!/bin/bash

pushd "$(dirname "$0")"

echo "Applying all RBAC resources..."

kubectl apply -f serviceaccount.yaml
kubectl apply -f clusterrole.yaml
kubectl apply -f clusterrolebinding.yaml
kubectl apply -f secret.yaml

popd
2 changes: 1 addition & 1 deletion deployments/rbac/clusterrole.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: ingress-resource-get-watch-list
name: resource-get-watch-list
namespace: nlk
rules:
- apiGroups:
Expand Down