Skip to content

Commit

Permalink
Nuclio is not compatible at the moment
Browse files Browse the repository at this point in the history
  • Loading branch information
fjudith committed Mar 2, 2021
1 parent 7b7d850 commit b6344a8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,21 @@

* Kubernetes: Enforcing strict Pod Security Policy

## v7.1.0 - 2021-03-01
## v7.1.0 - 2021-03-02

## Added

* Common: Added eBPF tools package installation
* Containerd: Bump version 1.4.3
* **Nuclio** is not compatible at the moment
* Orchestration: Enabled CRI runtime customization
* MailHog: Enabled support of user credentials list
* Weave-Scope: Added Containerd and Crio support

## Changed

* **Warning**: Enabled containerd as default container runtime
* Argo: Enabled containerd and Cri-O support
* MailHog: Bump version 1.0.1
* Ory Kratos: Migrated Selfservice UI deployment to Helm chart
* Rook-CockroachDB: Bump version 1.5.8
Expand All @@ -26,6 +29,8 @@
* Ory Hydra: Fixed hydra binary download
* Ory Kratos: Migration to v0.5 config spec
* Harbor: Use v2.0 Api for the OIDC configuration
* Rook-Ceph: Fixed deployment state
* Weave-Scope: Fixed missing selectors

## v7.0.0 - 2021-02-28

Expand Down
1 change: 0 additions & 1 deletion srv/salt/kubernetes/charts/nuclio/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ nuclio:
function_worker: 4
event_worker: 2
project_worker: 2
container_builder: docker
ingress_host: nuclio
registry:
dockerhub:
Expand Down
6 changes: 5 additions & 1 deletion srv/salt/kubernetes/charts/nuclio/templates/values.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
{%- from "kubernetes/map.jinja" import charts with context -%}
{%- from "kubernetes/map.jinja" import common with context -%}
{%- set public_domain = pillar['public-domain'] -%}
{% set cri_provider = salt['pillar.get']('kubernetes:common:cri:provider') %}

# if true, all components assume no internet connectivity
offline: false
Expand All @@ -27,7 +28,10 @@ dahsboard:
enabled: True
image:
tag: {{ nuclio.version }}-amd64
containerBuilderKind: "{{ nuclio.container_builder }}"

{%- if not cri_provider == 'docker' %}
containerBuilderKind: "kanico"
{%- endif %}

autoscaler:
enabled: False
Expand Down

0 comments on commit b6344a8

Please sign in to comment.