diff --git a/install/chart/Chart.yaml b/install/chart/Chart.yaml index cd095905..8c953f36 100644 --- a/install/chart/Chart.yaml +++ b/install/chart/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: cyclops-chart description: Cyclops Helm chart type: application -version: "0.12.0" +version: "0.13.0" appVersion: "v0.15.4" home: https://cyclops-ui.com/ keywords: diff --git a/install/chart/templates/cyclops-ctrl/deployment.yaml b/install/chart/templates/cyclops-ctrl/deployment.yaml index a9500fa1..40abbcf3 100644 --- a/install/chart/templates/cyclops-ctrl/deployment.yaml +++ b/install/chart/templates/cyclops-ctrl/deployment.yaml @@ -18,7 +18,7 @@ spec: serviceAccountName: cyclops-ctrl containers: - name: cyclops-ctrl - image: cyclopsui/cyclops-ctrl:v0.15.4 + image: {{ printf "cyclopsui/cyclops-ctrl:%s" (default .Chart.AppVersion (.Values.image).tag) }} ports: - containerPort: 8080 env: diff --git a/install/chart/templates/cyclops-ui/deployment.yaml b/install/chart/templates/cyclops-ui/deployment.yaml index 6a919f57..16a80fde 100644 --- a/install/chart/templates/cyclops-ui/deployment.yaml +++ b/install/chart/templates/cyclops-ui/deployment.yaml @@ -17,7 +17,7 @@ spec: spec: containers: - name: cyclops-ui - image: cyclopsui/cyclops-ui:v0.15.4 + image: {{ printf "cyclopsui/cyclops-ui:%s" (default .Chart.AppVersion (.Values.image).tag) }} ports: - containerPort: 80 env: diff --git a/web/src/pages/pricing.js b/web/src/pages/pricing.js index 4f44d5b9..6bb53116 100644 --- a/web/src/pages/pricing.js +++ b/web/src/pages/pricing.js @@ -1,9 +1,9 @@ import Layout from "@theme/Layout"; import { Card, Button, Typography, Row, Col, ConfigProvider } from "antd"; -import CalendlyWidget from "../components/CalendlyWidget"; import styles from "./index.module.css"; import yaml from "/static/img/yaml_background.png"; import AdoptersPlanSignup from "../components/AdoptersPlanSignup/AdoptersPlanSignup"; +import CalendlyWidget from "../components/CalendlyWidget"; const { Paragraph } = Typography;