Skip to content

Commit

Permalink
trivial. add params to tks-admin-console
Browse files Browse the repository at this point in the history
  • Loading branch information
ktkfree committed Nov 21, 2022
1 parent 634d77b commit e06e487
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions tks-apis/templates/tks-admin-console/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,13 @@ spec:
"-info-port", "{{ .Values.tksadminconsole.args.infoPort }}",
"-contract-address", "{{ .Values.tksadminconsole.args.contractAddress }}",
"-contract-port", "{{ .Values.tksadminconsole.args.contractPort }}",
"-lcm-address", "{{ .Values.tksadminconsole.args.lcmAddress }}",
"-lcm-port", "{{ .Values.tksadminconsole.args.lcmPort }}",
"-argo-address", "{{ .Values.tksadminconsole.args.argoAddress }}",
"-argo-port", "{{ .Values.tksadminconsole.args.argoPort }}",
"-web-root", "{{ .Values.tksadminconsole.args.webRoot }}",
"-jwt-secret", "{{ .Values.tksadminconsole.args.jwtSecret }}",
"-kubeconfig-path", "{{ .Values.tksadminconsole.args.kubeconfigPath }}",
"-dbhost", "{{ .Values.db.dbUrl }}",
"-dbport", "{{ .Values.db.dbPort }}",
"-dbuser", "{{ .Values.db.dbUser }}",
Expand Down
3 changes: 0 additions & 3 deletions tks-apis/templates/tks-contract/pre-install-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@ spec:
);
CREATE UNIQUE INDEX idx_contractor_name ON contracts(contractor_name);
ALTER TABLE contracts CLUSTER ON idx_contractor_name;
INSERT INTO contracts(
contractor_name, id, available_services, updated_at, created_at)
VALUES ('tester', 'Pedcaa975', ARRAY['lma'], '2021-05-01'::timestamp, '2021-05-01'::timestamp);
CREATE TABLE resource_quota
(
Expand Down
1 change: 1 addition & 0 deletions tks-apis/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ tksadminconsole:
argoPort: 2746
webRoot: ../../web
jwtSecret: tks-admin-console-secret
kubeconfigPath: ""

ingress:
enabled: false
Expand Down

0 comments on commit e06e487

Please sign in to comment.