diff --git a/.github/workflows/helm-release.yaml b/.github/workflows/helm-release.yaml new file mode 100644 index 000000000..be7c89b1b --- /dev/null +++ b/.github/workflows/helm-release.yaml @@ -0,0 +1,30 @@ +on: + push: + branches: + - main + +jobs: + publish-helm: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: | + git config user.name "actions" + git config user.email "actions@github.com" + - name: Run chart-releaser + uses: helm/chart-releaser-action@v1.7.0 + env: + CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" + + icons: + runs-on: ubuntu-latest + needs: publish-helm + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v2.1.3 + with: + node-version: '20' + - run: git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${{github.repository}}.git + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - run: npx -y -p gh-pages@3.0.0 gh-pages -d ./icons --dest icons --add -u "github-actions-bot " \ No newline at end of file diff --git a/charts/sill/.helmignore b/charts/sill/.helmignore new file mode 100644 index 000000000..0e8a0eb36 --- /dev/null +++ b/charts/sill/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/charts/sill/Chart.yaml b/charts/sill/Chart.yaml new file mode 100644 index 000000000..6fc51f02e --- /dev/null +++ b/charts/sill/Chart.yaml @@ -0,0 +1,21 @@ +apiVersion: v2 +name: sill +description: Application behind https://sill.code.gouv.fr +icon: https://codegouvfr.github.io/helm-charts/icons/marianne.png +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +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. +version: 1.2.0 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. +appVersion: 1.0.0 diff --git a/charts/sill/templates/NOTES.txt b/charts/sill/templates/NOTES.txt new file mode 100644 index 000000000..41015e0b1 --- /dev/null +++ b/charts/sill/templates/NOTES.txt @@ -0,0 +1 @@ +Enjoy sill :) \ No newline at end of file diff --git a/charts/sill/templates/_helpers.tpl b/charts/sill/templates/_helpers.tpl new file mode 100644 index 000000000..dadbb3fe5 --- /dev/null +++ b/charts/sill/templates/_helpers.tpl @@ -0,0 +1,124 @@ +{{/* vim: set filetype=mustache: */}} +{{/* +Expand the name of the chart. +*/}} +{{- define "sill.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{- define "sill.web.name" -}} +{{- printf "%s-%s" (include "sill.name" .) .Values.web.name | trunc 63 | trimSuffix "-" -}} +{{- end -}} + + +{{- define "sill.api.name" -}} +{{- printf "%s-%s" (include "sill.name" .) .Values.api.name | trunc 63 | trimSuffix "-" -}} +{{- end -}} + + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "sill.fullname" -}} +{{- if .Values.fullnameOverride -}} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- $name := default .Chart.Name .Values.nameOverride -}} +{{- if contains $name .Release.Name -}} +{{- .Release.Name | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} +{{- end -}} +{{- end -}} + +{{- define "sill.web.fullname" -}} +{{- printf "%s-%s" (include "sill.fullname" .) .Values.web.name | trunc 63 | trimSuffix "-" -}} +{{- end -}} + + +{{- define "sill.api.fullname" -}} +{{- printf "%s-%s" (include "sill.fullname" .) .Values.api.name | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "sill.chart" -}} +{{- printf "sill" -}} +{{- end -}} + +{{- define "sill.api.chart" -}} +{{- printf "sill-api" -}} +{{- end -}} + +{{- define "sill.web.chart" -}} +{{- printf "sill-web" -}} +{{- end -}} + + +{{/*Common labels*/}} + +{{- define "sill.labels" -}} +helm.sh/chart: {{ include "sill.chart" . }} +{{ include "sill.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end -}} + +{{- define "sill.api.labels" -}} +helm.sh/chart: {{ include "sill.api.chart" . }} +{{ include "sill.api.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end -}} + +{{- define "sill.web.labels" -}} +helm.sh/chart: {{ include "sill.web.chart" . }} +{{ include "sill.web.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end -}} + +{{/*Selector labels*/}} +{{- define "sill.selectorLabels" -}} +app.kubernetes.io/name: {{ include "sill.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end -}} + + +{{- define "sill.api.selectorLabels" -}} +app.kubernetes.io/name: {{ include "sill.api.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end -}} + +{{- define "sill.web.selectorLabels" -}} +app.kubernetes.io/name: {{ include "sill.web.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end -}} + +{{/*Create the name of the service account to use*/}} + +{{- define "sill.api.serviceAccountName" -}} +{{- if .Values.serviceAccount.create -}} + {{ default (include "sill.api.fullname" .) .Values.serviceAccount.name }} +{{- else -}} + {{ default "default" .Values.serviceAccount.name }} +{{- end -}} +{{- end -}} + +{{- define "sill.web.serviceAccountName" -}} +{{- if .Values.serviceAccount.create -}} + {{ default (include "sill.web.fullname" .) .Values.serviceAccount.name }} +{{- else -}} + {{ default "default" .Values.serviceAccount.name }} +{{- end -}} +{{- end -}} diff --git a/charts/sill/templates/cluster-role-binding.yaml b/charts/sill/templates/cluster-role-binding.yaml new file mode 100644 index 000000000..7dde07150 --- /dev/null +++ b/charts/sill/templates/cluster-role-binding.yaml @@ -0,0 +1,18 @@ +{{- if .Values.serviceAccount.create -}} +{{- if .Values.serviceAccount.clusterAdmin -}} +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: {{ include "sill.fullname" . }} + labels: + {{- include "sill.api.labels" . | nindent 4 }} +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cluster-admin +subjects: +- kind: ServiceAccount + name: {{ include "sill.api.serviceAccountName" . }} + namespace: {{ .Release.Namespace }} +{{- end -}} +{{- end -}} \ No newline at end of file diff --git a/charts/sill/templates/deployment-api.yaml b/charts/sill/templates/deployment-api.yaml new file mode 100644 index 000000000..0016234c0 --- /dev/null +++ b/charts/sill/templates/deployment-api.yaml @@ -0,0 +1,73 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "sill.api.fullname" . }} + labels: + {{- include "sill.api.labels" . | nindent 4 }} +spec: + replicas: {{ .Values.api.replicaCount }} + {{- if .Values.api.updateStrategy }} + strategy: {{- toYaml .Values.api.updateStrategy | nindent 4 }} + {{- end }} + selector: + matchLabels: + {{- include "sill.api.selectorLabels" . | nindent 6 }} + template: + metadata: + annotations: + checksum/config: {{ include (print $.Template.BasePath "/secret.yaml") . | sha256sum }} + labels: + {{- include "sill.api.selectorLabels" . | nindent 8 }} + spec: + {{- with .Values.api.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "sill.api.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.api.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.api.securityContext | nindent 12 }} + image: "{{ .Values.api.image.name }}:{{ .Values.api.image.version }}" + envFrom: + - secretRef: + {{- if .Values.existingSecret }} + name: {{ .Values.existingSecret }} + {{- else }} + name: {{ template "sill.fullname" . }} + {{- end }} + imagePullPolicy: {{ .Values.api.image.pullPolicy }} + ports: + - name: http + containerPort: {{ .Values.api.containerPort }} + protocol: TCP + livenessProbe: + httpGet: + path: /public/healthcheck + port: http + readinessProbe: + httpGet: + path: /public/healthcheck + port: http + resources: + {{- toYaml .Values.api.resources | nindent 12 }} + volumeMounts: + - name: cache + mountPath: /node_modules/.cache/ + volumes: + - name: cache + emptyDir: {} + {{- with .Values.api.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.api.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.api.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/charts/sill/templates/deployment-ui.yaml b/charts/sill/templates/deployment-ui.yaml new file mode 100644 index 000000000..8887ffbed --- /dev/null +++ b/charts/sill/templates/deployment-ui.yaml @@ -0,0 +1,65 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "sill.web.fullname" . }} + labels: + {{- include "sill.web.labels" . | nindent 4 }} +spec: + replicas: {{ .Values.web.replicaCount }} + {{- if .Values.web.updateStrategy }} + strategy: {{- toYaml .Values.web.updateStrategy | nindent 4 }} + {{- end }} + selector: + matchLabels: + {{- include "sill.web.selectorLabels" . | nindent 6 }} + template: + metadata: + labels: + {{- include "sill.web.selectorLabels" . | nindent 8 }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "sill.web.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.web.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.web.securityContext | nindent 12 }} + image: "{{ .Values.web.image.name }}:{{ .Values.web.image.version }}" + imagePullPolicy: {{ .Values.web.image.pullPolicy }} + env: + {{- if .Values.web.env }} + {{- range $key, $value := .Values.web.env }} + - name: {{ $key }} + value: {{ $value | quote }} + {{- end -}} + {{- end }} + ports: + - name: http + containerPort: {{ .Values.web.containerPort }} + protocol: TCP + livenessProbe: + httpGet: + path: / + port: http + readinessProbe: + httpGet: + path: / + port: http + resources: + {{- toYaml .Values.web.resources | nindent 12 }} + {{- with .Values.web.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.web.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.web.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/charts/sill/templates/ingress.yaml b/charts/sill/templates/ingress.yaml new file mode 100644 index 000000000..50f962723 --- /dev/null +++ b/charts/sill/templates/ingress.yaml @@ -0,0 +1,49 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullNameApi := include "sill.api.fullname" . -}} +{{- $fullNameWeb := include "sill.web.fullname" . -}} +{{- $fullName := include "sill.fullname" . -}} +{{- $svcPortApi := .Values.api.service.port -}} +{{- $svcPortWeb := .Values.web.service.port -}} +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + {{- include "sill.labels" . | nindent 4 }} + annotations: + {{- with .Values.ingress.annotations }} + {{- toYaml . | nindent 4 }} + {{- end }} + +spec: + {{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + - path: /api + pathType: Prefix + backend: + service: + name: {{ $fullNameApi }} + port: + number: {{ $svcPortApi }} + - path: / + pathType: Prefix + backend: + service: + name: {{ $fullNameWeb }} + port: + number: {{ $svcPortWeb }} + {{- end }} +{{- end }} diff --git a/charts/sill/templates/rolebinding-namespace-admin.yaml b/charts/sill/templates/rolebinding-namespace-admin.yaml new file mode 100644 index 000000000..b30b6c3c0 --- /dev/null +++ b/charts/sill/templates/rolebinding-namespace-admin.yaml @@ -0,0 +1,18 @@ +{{- if .Values.serviceAccount.create -}} +{{- if not .Values.serviceAccount.clusterAdmin -}} +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: {{ include "sill.fullname" . }} + labels: + {{- include "sill.api.labels" . | nindent 4 }} +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: admin +subjects: +- kind: ServiceAccount + name: {{ include "sill.api.serviceAccountName" . }} + namespace: {{ .Release.Namespace }} +{{- end -}} +{{- end -}} \ No newline at end of file diff --git a/charts/sill/templates/secret.yaml b/charts/sill/templates/secret.yaml new file mode 100644 index 000000000..fc44cf715 --- /dev/null +++ b/charts/sill/templates/secret.yaml @@ -0,0 +1,24 @@ +{{- if not .Values.existingSecret }} +apiVersion: v1 +kind: Secret +metadata: + name: {{ template "sill.fullname" . }} + labels: + app: {{ template "sill.name" . }} + chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" + release: {{ .Release.Name }} + heritage: {{ .Release.Service }} +type: Opaque +data: +{{- if .Values.api.env }} +{{- range $key, $value := .Values.api.env }} + {{ $key }}: {{ $value | b64enc | quote }} +{{- end -}} +{{- end -}} +{{- if .Values.api.regions }} + regions: {{ .Values.api.regions | toJson | b64enc | quote }} +{{- end}} +{{- if .Values.api.catalogs }} + catalogs: {{ .Values.api.catalogs | toJson | b64enc | quote }} +{{- end}} +{{- end}} diff --git a/charts/sill/templates/service-api.yaml b/charts/sill/templates/service-api.yaml new file mode 100644 index 000000000..fbbc739d3 --- /dev/null +++ b/charts/sill/templates/service-api.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "sill.api.fullname" . }} + labels: + {{- include "sill.api.labels" . | nindent 4 }} +spec: + type: {{ .Values.api.service.type }} + ports: + - port: {{ .Values.api.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "sill.api.selectorLabels" . | nindent 4 }} diff --git a/charts/sill/templates/service-ui.yaml b/charts/sill/templates/service-ui.yaml new file mode 100644 index 000000000..e6314e20b --- /dev/null +++ b/charts/sill/templates/service-ui.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "sill.web.fullname" . }} + labels: + {{- include "sill.web.labels" . | nindent 4 }} +spec: + type: {{ .Values.web.service.type }} + ports: + - port: {{ .Values.web.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "sill.web.selectorLabels" . | nindent 4 }} diff --git a/charts/sill/templates/serviceaccount-api.yaml b/charts/sill/templates/serviceaccount-api.yaml new file mode 100644 index 000000000..be92d8bca --- /dev/null +++ b/charts/sill/templates/serviceaccount-api.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "sill.api.serviceAccountName" . }} + labels: + {{- include "sill.api.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end -}} diff --git a/charts/sill/templates/serviceaccount-ui.yaml b/charts/sill/templates/serviceaccount-ui.yaml new file mode 100644 index 000000000..71bd1ef98 --- /dev/null +++ b/charts/sill/templates/serviceaccount-ui.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "sill.web.serviceAccountName" . }} + labels: + {{- include "sill.web.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end -}} diff --git a/charts/sill/templates/tests/test-connection-api.yaml b/charts/sill/templates/tests/test-connection-api.yaml new file mode 100644 index 000000000..309f5be40 --- /dev/null +++ b/charts/sill/templates/tests/test-connection-api.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "sill.api.fullname" . }}-test-connection" + labels: + {{- include "sill.api.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test-success +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "sill.api.fullname" . }}:{{ .Values.api.service.port }}'] + restartPolicy: Never diff --git a/charts/sill/templates/tests/test-connection-ihm.yaml b/charts/sill/templates/tests/test-connection-ihm.yaml new file mode 100644 index 000000000..ff11bc91d --- /dev/null +++ b/charts/sill/templates/tests/test-connection-ihm.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "sill.web.fullname" . }}-test-connection" + labels: + {{- include "sill.web.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test-success +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "sill.web.fullname" . }}:{{ .Values.web.service.port }}'] + restartPolicy: Never diff --git a/charts/sill/values.yaml b/charts/sill/values.yaml new file mode 100644 index 000000000..0245a36f8 --- /dev/null +++ b/charts/sill/values.yaml @@ -0,0 +1,138 @@ +# Default values for onyxia-bis. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +imagePullSecrets: [] + +serviceAccount: + # Specifies whether a service account should be created + create: true + clusterAdmin: false # If true, give cluster admin permissions. Otherwise, be admin scoped to the namespace + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: + +ingress: + enabled: false + annotations: + {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +web: + name: web + replicaCount: 1 + image: + name: codegouvfr/sill-web + version: latest + pullPolicy: Always + #updateStrategy: + # type: RollingUpdate + podSecurityContext: + {} + # fsGroup: 2000 + securityContext: + {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + containerPort: 8080 + service: + type: ClusterIP + port: 80 + resources: + {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + + nodeSelector: {} + tolerations: [] + affinity: {} +# env: +# API_URL: /api + + + +api: + name: api + replicaCount: 1 + image: + name: codegouvfr/sill-api + version: latest + pullPolicy: Always + #updateStrategy: + # type: RollingUpdate + podSecurityContext: + {} + # fsGroup: 2000 + securityContext: + {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + containerPort: 8080 + service: + type: ClusterIP + port: 80 + resources: + {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + nodeSelector: {} + tolerations: [] + affinity: {} +# env: +# CONFIGURATION: | +# { +# "keycloakParams": { +# "url": "https://auth.code.gouv.fr/auth", +# "realm": "codegouv", +# "clientId": "sill", +# "adminPassword": "xxxxxxxxxxxxxxxxxxxxx", +# "agencyNameAttributeName:": "agencyName" +# }, +# "termsOfServiceUrl": "https://sill.code.gouv.fr/tos_fr.md", +# "jwtClaimByUserKey": { +# "id": "sub", +# "email": "email", +# "agencyName": "agency_name", +# "locale": "locale" +# }, +# "dataRepoSshUrl": "git@github.com:codegouvfr/sill-data.git", +# "sshPrivateKeyForGitName": "id_edxxxxxx", +# "sshPrivateKeyForGit": "-----BEGIN OPENSSH PRIVATE KEY-----\nb3xxxxxxxxxxxxxxxEC\n-----END OPENSSH PRIVATE KEY-----\n", +# "githubWebhookSecret": "xxxxxxxxxxxxxxx", +# "githubPersonalAccessToken": "ghp_xxxxxxxxxxxxxxxx", +# } + +# existingSecret: existingSecretName diff --git a/web/index.html b/web/index.html index 4a74f955e..2f6b52337 100644 --- a/web/index.html +++ b/web/index.html @@ -15,7 +15,7 @@ - +