We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0a3572 commit 7a8802dCopy full SHA for 7a8802d
.transpire.py
@@ -9,13 +9,13 @@
9
10
def objects():
11
dep = Deployment(
12
- name="ocfdocs",
+ name=name,
13
image=get_image_tag("ocfdocs"),
14
ports=[15000],
15
)
16
17
svc = Service(
18
19
selector=dep.get_selector(),
20
port_on_pod=15000,
21
port_on_svc=80,
@@ -29,10 +29,17 @@ def objects():
29
30
31
# TODO: Secrets
32
+ sec = Secret(
33
34
+ string_data={
35
+ "OUTLINE_API_KEY": "",
36
+ },
37
+ )
38
39
yield dep.build()
40
yield svc.build()
41
yield ing.build()
42
+ yield sec.build()
43
44
45
def images():
0 commit comments