Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

feat: Add httplint #1196

Merged
merged 4 commits into from
Aug 22, 2020
Merged
Show file tree
Hide file tree
Changes from 3 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: 4 additions & 0 deletions .http_exceptions
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# exceptions file for httplint
www.apache.org
127.0.0.1
localhost
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version:
update-subcharts:
@./scripts/update-subcharts.sh

lint: shellcheck yamllint helmlint
lint: shellcheck yamllint helmlint httplint

helmlint:
@./scripts/helmlint.sh
Expand All @@ -27,6 +27,10 @@ yamllint:
test:
./tests/config.sh

.PHONY: httplint
httplint:
@./src/kubecf-tools/httplint/httplint.sh

########################################################################
# Build

Expand Down
4 changes: 2 additions & 2 deletions chart/requirements.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dependencies:
- name: eirini
repository: http://opensource.suse.com/eirini-release/
repository: https://opensource.suse.com/eirini-release/
version: 1.0.6
- name: bits
repository: http://opensource.suse.com/bits-service-release/
repository: https://opensource.suse.com/bits-service-release/
version: 1.0.21
- name: eirini-extensions
repository: https://cloudfoundry-incubator.github.io/eirinix-helm-release/
Expand Down
4 changes: 2 additions & 2 deletions chart/requirements.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
dependencies:
- name: eirini
version: 1.0.6
repository: http://opensource.suse.com/eirini-release/
repository: https://opensource.suse.com/eirini-release/
condition: features.eirini.enabled
- name: bits
version: 1.0.21
repository: http://opensource.suse.com/bits-service-release/
repository: https://opensource.suse.com/bits-service-release/
condition: features.eirini.enabled
- name: eirini-extensions
alias: eirinix
Expand Down
2 changes: 1 addition & 1 deletion chart/values.schema.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"$schema": http://json-schema.org/draft-07/schema
"$schema": https://json-schema.org/draft-07/schema
"$id": https://raw.githubusercontent.com/cloudfoundry-incubator/kubecf/master/chart/values.schema.yaml

additionalProperties: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ We need to record the architectural decisions made on this project.

## Decision

We will use Architecture Decision Records, as [described by Michael Nygard](http://thinkrelevance.com/blog/2011/11/15/documenting-architecture-decisions).
We will use Architecture Decision Records, as [described by Michael Nygard](https://thinkrelevance.com/blog/2011/11/15/documenting-architecture-decisions).

## Consequences

Expand Down
2 changes: 1 addition & 1 deletion doc/kube/minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ environment variable to override the default. E.g. `VM_DRIVER=kvm2`.
It is possible to set extra minikube options (e.g. to set a docker registry
mirror) via the environment variable `MINIKUBE_EXTRA_OPTIONS`. For example:
```sh
export MINIKUBE_EXTRA_OPTIONS="--registry-mirror http://registry.mirror.example:5000/"
export MINIKUBE_EXTRA_OPTIONS="--registry-mirror https://registry.mirror.example:5000/"
```
2 changes: 1 addition & 1 deletion src/kubecf-tools