You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _docs/administration/codefresh-on-prem.md
+56Lines changed: 56 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -279,6 +279,7 @@ Edit k8s-agent/config.yaml and run:
279
279
kcfi deploy [ -c config.yaml ] [-n namespace]
280
280
```
281
281
282
+
282
283
## Additional Configurations
283
284
284
285
After you install Codefresh, these are some day-2 operations that you should follow.
@@ -1080,6 +1081,61 @@ To upgrade Codefresh to a newer version
1080
1081
1081
1082
Notice that only `kfci` should be used for Codefresh upgrades. If you still have a `cf-onprem` script at hand, please contact us for migration instructions.
1082
1083
1084
+
### Migrating existing installations
1085
+
If you already have Codefresh version 1.0.202 or lower installed, and are upgrading to a later version, update the `config.yaml` for `kcfi` to _retain the existing images_ for these services:
1086
+
1087
+
* `cf-mongodb`
1088
+
* `cf-redis`
1089
+
* `cf-rabbitmq`
1090
+
* `cf-postgresql`
1091
+
* `cf-nats`
1092
+
* `cf-consul`
1093
+
1094
+
> In the `config.yaml` below, if needed, replace the `bitnami` prefix with that of your private repo.
1095
+
1096
+
```yaml
1097
+
...
1098
+
1099
+
global:
1100
+
### Codefresh App domain name. appUrl is manadatory parameter
1101
+
appUrl: onprem.mydomain.com
1102
+
appProtocol: https
1103
+
1104
+
mongodbImage: bitnami/mongodb:3.6.13-r0
1105
+
1106
+
mongodb:
1107
+
image: bitnami/mongodb:3.6.13-r0
1108
+
podSecurityContext:
1109
+
enabled: false
1110
+
containerSecurityContext:
1111
+
enabled: false
1112
+
1113
+
redis:
1114
+
image: bitnami/redis:3.2.9-r2
1115
+
podSecurityContext:
1116
+
enabled: false
1117
+
containerSecurityContext:
1118
+
enabled: false
1119
+
1120
+
rabbitmq:
1121
+
image: bitnami/rabbitmq:3.7.2-r1
1122
+
podSecurityContext:
1123
+
enabled: false
1124
+
containerSecurityContext:
1125
+
enabled: false
1126
+
1127
+
postgresql:
1128
+
imageTag: 9.6.2
1129
+
1130
+
nats:
1131
+
imageTag: 0.9.4
1132
+
1133
+
consul:
1134
+
ImageTag: 1.0.0
1135
+
1136
+
...
1137
+
```
1138
+
1083
1139
###Internal Docker Registry deprecation
1084
1140
1085
1141
From version 1.0.205, Codefresh has deprecated the internal Docker registry`cf-registry`.